0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

rpc, wallet: setwalletflags warnings are optional

Without this, trying to disable a wallet flag results in an Internal bug
detected.
This commit is contained in:
Andrew Chow 2022-04-14 14:39:21 -04:00
parent b69fd5eaa9
commit 17ab31aa46

View file

@ -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{