tfix: network.height() is a function - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 12e9f490429054f25187fa0adc4dc1323f100655
DIR parent 271dfeb245fd0ba560e9d6c3593b57629972b88e
HTML Author: ThomasV <thomasv@gitorious>
Date: Tue, 4 Mar 2014 14:32:52 +0100
fix: network.height() is a function
Diffstat:
M lib/wallet.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/wallet.py b/lib/wallet.py
t@@ -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')