From 17ab31aa46f7b5c265d07091fe45671ef2af6a9a Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Thu, 14 Apr 2022 14:39:21 -0400 Subject: [PATCH] rpc, wallet: setwalletflags warnings are optional Without this, trying to disable a wallet flag results in an Internal bug detected. --- src/wallet/rpc/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/rpc/wallet.cpp b/src/wallet/rpc/wallet.cpp index 4baf16fdcb..1291663847 100644 --- a/src/wallet/rpc/wallet.cpp +++ b/src/wallet/rpc/wallet.cpp @@ -257,7 +257,7 @@ static RPCHelpMan setwalletflag() { {RPCResult::Type::STR, "flag_name", "The name of the flag that was modified"}, {RPCResult::Type::BOOL, "flag_state", "The new state of the flag"}, - {RPCResult::Type::STR, "warnings", "Any warnings associated with the change"}, + {RPCResult::Type::STR, "warnings", /*optional=*/true, "Any warnings associated with the change"}, } }, RPCExamples{