setwalletflag
setwalletflag "flag" ( value )
Changes the state of the specified wallet flag.
Argument #1 – flag
Type: string, required
The name of the flag to modify. Currently available flags: avoid_reuse
.
Argument #2 – value
Type: boolean, optional, default=true
The new state.
Result
{ (json object)
"flag_name" : "str", (string) The name of the flag that was modified
"flag_state" : true|false, (boolean) The new state of the flag
"warnings" : "str" (string) Any warnings associated with the change
}
Examples
bitcoinevo-cli setwalletflag avoid_reuse
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "setwalletflag", "params": ["avoid_reuse"]}' -H 'content-type: text/plain;' http://127.0.0.1:7332/