electrum

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

commit 9b07aca88fcc51fadd09bf3b4043547b7fcbffa0
parent 096a8a8606db1e9d799755a083480fde5464e9f7
Author: Maran <maran.hidskes@gmail.com>
Date:   Thu, 13 Dec 2012 16:43:56 +0100

Fix receiving widget

Diffstat:
Mlib/receiving_widget.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/receiving_widget.py b/lib/receiving_widget.py @@ -42,7 +42,7 @@ class ReceivingWidget(QTreeWidget): history = self.owner.actuator.wallet.history.get(address,[]) used = "No" - for tx_hash, tx_height in history: + for tx_hash in history: tx = self.owner.actuator.wallet.transactions.get(tx_hash) if tx: used = "Yes"