electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit d57af0db33b57d7ad0bc938810d42d25accc405c
parent b5313ce17d8a570ddd5bffcbd5d5a6dac759bcfc
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:
Mgui/stdio.py | 2+-
Mgui/text.py | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui/stdio.py b/gui/stdio.py @@ -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 diff --git a/gui/text.py b/gui/text.py @@ -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