diff --git a/lib/blockchain.py b/lib/blockchain.py index 603f8fb9..1a51b18d 100644 --- 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: