From d80a00660f5b26ee16c60b941c2bbbd2d49e711f Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 4 Oct 2016 14:07:50 +0000 Subject: [PATCH] Qt/RPCConsole: Add signmessagewithprivkey to list of commands filtered from history --- src/qt/rpcconsole.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 23a4a2507..c979fdf87 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -68,6 +68,7 @@ namespace { // don't add private key handling cmd's to the history const QStringList historyFilter = QStringList() << "importprivkey" + << "signmessagewithprivkey" << "signrawtransaction" << "walletpassphrase" << "walletpassphrasechange"