From 1bba3ffbd7b1eb9ad4e3a0194c3ab1b3c083a462 Mon Sep 17 00:00:00 2001 From: thomasv Date: Mon, 25 Feb 2013 18:17:02 +0100 Subject: [PATCH] fix: addressbook --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 795e0174f..a33a25f79 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -336,7 +336,7 @@ class Wallet: for tx_hash, tx in self.transactions.items(): is_send, _, _ = self.get_tx_value(tx) if is_send: - for o in tx['outputs']: + for o in tx.outputs: addr = o.get('address') if not self.is_mine(addr) and addr not in self.addressbook: self.addressbook.append(addr)