aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMacroFake <falke.marco@gmail.com>2022-07-06 11:56:43 +0200
committerMacroFake <falke.marco@gmail.com>2022-07-13 18:04:23 +0200
commitccccc17b91698aa09ac85f7efea298f3938594ad (patch)
tree96266186934bf2ff146f8f0e4b6d91d69860b40d /src
parent31c6309cc60ae3fee2d3ecc2aff9576596fb98ac (diff)
downloadbitcoin-ccccc17b91698aa09ac85f7efea298f3938594ad.tar.xz
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.cpp2
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;