protect history from importprivkey

This commit is contained in:
thomasv 2013-09-15 17:57:51 +02:00
parent a320f92023
commit b26187666b
1 changed files with 3 additions and 0 deletions

View File

@ -142,6 +142,9 @@ class Console(QtGui.QPlainTextEdit):
self.history = history
def addToHistory(self, command):
if command.find("importprivkey") > -1:
return
if command and (not self.history or self.history[-1] != command):
self.history.append(command)
self.history_index = len(self.history)