Browse Source

fix prioritization

283
thomasv 12 years ago
parent
commit
c51cf776ae
  1. 1
      lib/wallet.py

1
lib/wallet.py

@ -554,6 +554,7 @@ class Wallet:
h = self.history.get(addr, [])
if h == ['*']: continue
for tx_hash, tx_height in h:
tx = self.transactions.get(tx_hash)
for output in tx.get('outputs'):
if output.get('address') != addr: continue
key = tx_hash + ":%d" % output.get('index')

Loading…
Cancel
Save