File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -58,19 +58,19 @@ static void PreventOutdatedOptions(const UniValue& options)
58
58
throw JSONRPCError (RPC_INVALID_PARAMETER, " Use fee_rate (" + CURRENCY_ATOM + " /vB) instead of feeRate" );
59
59
}
60
60
if (options.exists (" changeAddress" )) {
61
- throw JSONRPCError (RPC_INVALID_PARAMETER, " Use change_address" );
61
+ throw JSONRPCError (RPC_INVALID_PARAMETER, " Use change_address instead of changeAddress " );
62
62
}
63
63
if (options.exists (" changePosition" )) {
64
- throw JSONRPCError (RPC_INVALID_PARAMETER, " Use change_position" );
64
+ throw JSONRPCError (RPC_INVALID_PARAMETER, " Use change_position instead of changePosition " );
65
65
}
66
66
if (options.exists (" includeWatching" )) {
67
- throw JSONRPCError (RPC_INVALID_PARAMETER, " Use include_watching" );
67
+ throw JSONRPCError (RPC_INVALID_PARAMETER, " Use include_watching instead of includeWatching " );
68
68
}
69
69
if (options.exists (" lockUnspents" )) {
70
- throw JSONRPCError (RPC_INVALID_PARAMETER, " Use lock_unspents" );
70
+ throw JSONRPCError (RPC_INVALID_PARAMETER, " Use lock_unspents instead of lockUnspents " );
71
71
}
72
72
if (options.exists (" subtractFeeFromOutputs" )) {
73
- throw JSONRPCError (RPC_INVALID_PARAMETER, " Use subtract_fee_from_outputs" );
73
+ throw JSONRPCError (RPC_INVALID_PARAMETER, " Use subtract_fee_from_outputs instead of subtractFeeFromOutputs " );
74
74
}
75
75
}
76
76
You can’t perform that action at this time.
0 commit comments