wallet.clear_history: clear txns and verified txns too

This commit is contained in:
SomberNight 2018-02-16 13:37:38 +01:00
parent 945ba8decf
commit 63e402c2d7

View file

@ -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