1
0

delete_imported_key method

This commit is contained in:
ecdsa
2013-05-02 09:54:43 +02:00
parent 4ab44019fd
commit fe405c50d0
2 changed files with 7 additions and 3 deletions

View File

@@ -971,10 +971,9 @@ class ElectrumWindow(QMainWindow):
def delete_imported_key(self, addr):
if self.question(_("Do you want to remove")+" %s "%addr +_("from your wallet?")):
self.wallet.imported_keys.pop(addr)
self.wallet.delete_imported_key(addr)
self.update_receive_tab()
self.update_history_tab()
self.wallet.save()
def create_receive_menu(self, position):