tRevert "Fix 'need more than 2 values to unpack' error." - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit d57af0db33b57d7ad0bc938810d42d25accc405c DIR parent b5313ce17d8a570ddd5bffcbd5d5a6dac759bcfc HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 14 Jan 2016 16:32:09 +0100 Revert "Fix 'need more than 2 values to unpack' error." This reverts commit 812399f51db43ea1c6602d5dac53b6dbd4910d96. Diffstat: M gui/stdio.py | 2 +- M gui/text.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/gui/stdio.py b/gui/stdio.py t@@ -187,7 +187,7 @@ class ElectrumGui: if c == "n": return 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: print(str(e)) return DIR diff --git a/gui/text.py b/gui/text.py t@@ -329,7 +329,7 @@ class ElectrumGui: password = None 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: self.show_message(str(e)) return