diff options
author | MacroFake <falke.marco@gmail.com> | 2022-07-06 11:56:43 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-07-13 18:04:23 +0200 |
commit | ccccc17b91698aa09ac85f7efea298f3938594ad (patch) | |
tree | 96266186934bf2ff146f8f0e4b6d91d69860b40d /src | |
parent | 31c6309cc60ae3fee2d3ecc2aff9576596fb98ac (diff) |
refactor: Default options in walletcreatefundedpsbt to VOBJ instead of VNULL
This should not change behavior and makes the code consistent with other
places.
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/rpc/spend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpc/spend.cpp b/src/wallet/rpc/spend.cpp index 22c1f2bdc2..83e23497cb 100644 --- a/src/wallet/rpc/spend.cpp +++ b/src/wallet/rpc/spend.cpp @@ -1633,7 +1633,7 @@ RPCHelpMan walletcreatefundedpsbt() }, true ); - UniValue options = request.params[3]; + UniValue options{request.params[3].isNull() ? UniValue::VOBJ : request.params[3]}; CAmount fee; int change_position; |