mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
Revert "Fix 'need more than 2 values to unpack' error."
This reverts commit 812399f51d
.
This commit is contained in:
parent
b5313ce17d
commit
d57af0db33
2 changed files with 2 additions and 2 deletions
|
@ -187,7 +187,7 @@ class ElectrumGui:
|
||||||
if c == "n": return
|
if c == "n": return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
tx = self.wallet.mktx( [("address", self.str_recipient, amount)], password, self.config, fee)
|
tx = self.wallet.mktx( [(self.str_recipient, amount)], password, self.config, fee)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(str(e))
|
print(str(e))
|
||||||
return
|
return
|
||||||
|
|
|
@ -329,7 +329,7 @@ class ElectrumGui:
|
||||||
password = None
|
password = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
tx = self.wallet.mktx( [("address", self.str_recipient, amount)], password, self.config, fee)
|
tx = self.wallet.mktx( [(self.str_recipient, amount)], password, self.config, fee)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.show_message(str(e))
|
self.show_message(str(e))
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Reference in a new issue