electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit ff964df8ea30517b02bb795ec58d612dfb2e3294
parent 9c016a94e27f0849785b725acedb898ed1d24b23
Author: ThomasV <thomasv1@gmx.de>
Date:   Tue,  5 Nov 2013 00:49:39 -0800

Merge pull request #361 from Wallacoloo/patch-1

Fixed indexing a function rather than calling it in WalletStorage.put
Diffstat:
Mlib/wallet.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/wallet.py b/lib/wallet.py @@ -132,7 +132,7 @@ class WalletStorage: if value is not None: self.data[key] = value else: - self.data.pop[key] + self.data.pop(key) if save: self.write()