diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-04-27 19:44:38 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2019-07-27 19:24:56 +0200 |
commit | 4fcb698bc2bb74171cd3a14b94f9882d8e19e9fb (patch) | |
tree | 1a9ca9d6cf1c98cde3b3b16908a6c93096d74666 /src/rpc/rawtransaction.cpp | |
parent | febf3a856bcfb8fef2cb4ddcb8d1e0cab8a22580 (diff) |
[rpc] walletcreatefundedpsbt: use wallet default RBF
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
-rw-r--r-- | src/rpc/rawtransaction.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 532765b3d8..f9e5c436f0 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -406,7 +406,11 @@ static UniValue createrawtransaction(const JSONRPCRequest& request) }, true ); - CMutableTransaction rawTx = ConstructTransaction(request.params[0], request.params[1], request.params[2], request.params[3]); + bool rbf = false; + if (!request.params[3].isNull()) { + rbf = request.params[3].isTrue(); + } + CMutableTransaction rawTx = ConstructTransaction(request.params[0], request.params[1], request.params[2], rbf); return EncodeHexTx(CTransaction(rawTx)); } @@ -1362,7 +1366,11 @@ UniValue createpsbt(const JSONRPCRequest& request) }, true ); - CMutableTransaction rawTx = ConstructTransaction(request.params[0], request.params[1], request.params[2], request.params[3]); + bool rbf = false; + if (!request.params[3].isNull()) { + rbf = request.params[3].isTrue(); + } + CMutableTransaction rawTx = ConstructTransaction(request.params[0], request.params[1], request.params[2], rbf); // Make a blank psbt PartiallySignedTransaction psbtx; |