mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Actually use includeWatching value in fundrawtransaction
Previously if you called fundrawtransaction and set includeWatching to false it'd act as through you set it to true.
This commit is contained in:
parent
dbd2c135dd
commit
61e1eb2e1c
@ -2420,7 +2420,7 @@ UniValue fundrawtransaction(const UniValue& params, bool fHelp)
|
||||
|
||||
bool includeWatching = false;
|
||||
if (params.size() > 1)
|
||||
includeWatching = true;
|
||||
includeWatching = params[1].get_bool();
|
||||
|
||||
CMutableTransaction tx(origTx);
|
||||
CAmount nFee;
|
||||
|
Loading…
Reference in New Issue
Block a user