commit b2116d87eaf81ec512689174db5966f2644205ec
parent ec41ad4a9892fd894baa74c827b0a55e619397a3
Author: ThomasV <thomasv@electrum.org>
Date: Sun, 16 Jul 2017 08:07:47 +0200
minor fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/blockchain.py b/lib/blockchain.py
@@ -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: