fix: network.height() is a function

This commit is contained in:
ThomasV 2014-03-04 14:32:52 +01:00
parent 271dfeb245
commit 12e9f49042
1 changed files with 1 additions and 1 deletions

View File

@ -1101,7 +1101,7 @@ class NewWallet:
inputs = []
for item in coins:
if item.get('coinbase') and item.get('height') + COINBASE_MATURITY > self.network.blockchain.height:
if item.get('coinbase') and item.get('height') + COINBASE_MATURITY > self.network.blockchain.height():
continue
addr = item.get('address')
v = item.get('value')