commit 63e402c2d7c063d5f078968c338534337fe89545
parent 945ba8decf2fb1c2d117edcb9252af8717788eba
Author: SomberNight <somber.night@protonmail.com>
Date: Fri, 16 Feb 2018 13:37:38 +0100
wallet.clear_history: clear txns and verified txns too
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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