1
0

wallet: merge mktx and create_transaction

This commit is contained in:
SomberNight
2023-10-10 17:45:26 +00:00
parent f4997c3771
commit 57d2efc88d
6 changed files with 50 additions and 60 deletions

View File

@@ -674,10 +674,11 @@ class ElectrumGui(BaseElectrumGui, EventListener):
else:
password = None
try:
tx = self.wallet.mktx(
tx = self.wallet.create_transaction(
outputs=invoice.outputs,
password=password,
fee=None)
fee=None,
)
except Exception as e:
self.show_message(repr(e))
return