1
0

handle pruning in wallet.txi/txo

This commit is contained in:
ThomasV
2015-03-30 12:58:52 +02:00
parent 3d1fa1e27f
commit ec11e58add
4 changed files with 89 additions and 64 deletions

View File

@@ -500,7 +500,7 @@ class Plugin(BasePlugin):
def load_wallet(self, wallet):
tx_list = {}
for item in self.wallet.get_history(self.wallet.storage.get("current_account", None)):
tx_hash, conf, value, timestamp = item
tx_hash, conf, value, timestamp, balance = item
tx_list[tx_hash] = {'value': value, 'timestamp': timestamp }
self.tx_list = tx_list