fix: tx outputs

This commit is contained in:
ecdsa 2013-03-03 19:29:03 +01:00
parent 703c2c0895
commit f97fe02e3a
1 changed files with 1 additions and 2 deletions

View File

@ -1084,8 +1084,7 @@ class Wallet:
print_error("new history is orphaning transaction:", tx_hash) print_error("new history is orphaning transaction:", tx_hash)
# check that all outputs are not mine, request histories # check that all outputs are not mine, request histories
ext_requests = [] ext_requests = []
for o in tx.get('outputs'): for _addr, _v in tx.outputs:
_addr = o.get('address')
# assert not self.is_mine(_addr) # assert not self.is_mine(_addr)
ext_requests.append( ('blockchain.address.get_history', [_addr]) ) ext_requests.append( ('blockchain.address.get_history', [_addr]) )