From cb4d3a78b475b2a586409f23e58f5406e515027f Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 13 Jun 2015 16:46:44 +0300 Subject: [PATCH] verifier: fix typo --- lib/verifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/verifier.py b/lib/verifier.py index b221856a..35a8a639 100644 --- a/lib/verifier.py +++ b/lib/verifier.py @@ -92,7 +92,7 @@ class SPV(util.DaemonThread): def undo_verifications(self, height): - tx_hashes = selt.wallet.undo_verifications(height) + tx_hashes = self.wallet.undo_verifications(height) for tx_hash in tx_hashes: self.print_error("redoing", tx_hash) self.merkle_roots.pop(tx_hash, None)