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:
parent
b69fd5eaa9
commit
17ab31aa46
1 changed files with 1 additions and 1 deletions
|
@ -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{
|
||||
|
|
Loading…
Add table
Reference in a new issue