From 63e402c2d7c063d5f078968c338534337fe89545 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 16 Feb 2018 13:37:38 +0100 Subject: [PATCH] wallet.clear_history: clear txns and verified txns too --- lib/wallet.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/wallet.py b/lib/wallet.py index 81091ac1..9a3c3346 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -271,6 +271,8 @@ class Abstract_Wallet(PrintError): self.pruned_txo = {} self.spent_outpoints = {} self.history = {} + self.verified_tx = {} + self.transactions = {} self.save_transactions() @profiler