trename history -> addr_history - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit f1d4838012414f531268d3e66ef62f7aadd3d14a DIR parent efccde2e8e720c2c773e10b7ea7f930df5cc0ef4 HTML Author: ThomasV <thomasv@gitorious> Date: Sun, 4 Nov 2012 15:47:19 +0100 rename history -> addr_history Diffstat: M lib/wallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -72,7 +72,7 @@ class Wallet: self.receipts = config.get('receipts',{}) # signed URIs self.addressbook = config.get('contacts', []) # outgoing addresses, for payments self.imported_keys = config.get('imported_keys',{}) - self.history = config.get('history',{}) # address -> list(txid, height, timestamp) + self.history = config.get('addr_history',{}) # address -> list(txid, height) self.transactions = config.get('transactions',{}) # txid -> deserialised # not saved t@@ -848,7 +848,7 @@ class Wallet: 'seed': self.seed, 'addresses': self.addresses, 'change_addresses': self.change_addresses, - 'history': self.history, + 'addr_history': self.history, 'labels': self.labels, 'contacts': self.addressbook, 'imported_keys': self.imported_keys,