tminor fix - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit b2116d87eaf81ec512689174db5966f2644205ec
DIR parent ec41ad4a9892fd894baa74c827b0a55e619397a3
HTML Author: ThomasV <thomasv@electrum.org>
Date: Sun, 16 Jul 2017 08:07:47 +0200
minor fix
Diffstat:
M lib/blockchain.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/blockchain.py b/lib/blockchain.py
t@@ -165,7 +165,7 @@ class Blockchain(util.PrintError):
def save(self):
# recursively save parents if they have not been saved
- if self.parent and not self.parent.is_saved():
+ if self.parent and not self.parent.is_saved:
self.parent.save()
open(self.path(), 'w+').close()
for h in self.headers: