From 4e352efa2ce756c668664486c99d003eef530e0c Mon Sep 17 00:00:00 2001 From: WakeTrainDev <175499942+waketraindev@users.noreply.github.com> Date: Fri, 10 Oct 2025 23:55:06 +0300 Subject: [PATCH] qt: add createwallet, createwalletdescriptor, and migratewallet to history filter --- src/qt/rpcconsole.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 958c82fda22..d6d2be7b393 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -72,6 +72,9 @@ namespace { // don't add private key handling cmd's to the history const QStringList historyFilter = QStringList() + << "createwallet" + << "createwalletdescriptor" + << "migratewallet" << "signmessagewithprivkey" << "signrawtransactionwithkey" << "walletpassphrase"