diff options
author | Chris Moore <dooglus@gmail.com> | 2016-12-13 13:36:23 -0800 |
---|---|---|
committer | Chris Moore <dooglus@gmail.com> | 2016-12-13 13:36:23 -0800 |
commit | 453bda63dd90986501ee61426e4d768a400bd371 (patch) | |
tree | 0edbbef75f7072b1d3ee1389e0a5715bd93cd4b5 /src/wallet/wallet.h | |
parent | 26fe5c98ab6a0bcf253467d70ef0d910fedac518 (diff) |
Add 'subtractFeeFromOutputs' option to 'fundrawtransaction'.
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index f7103b6a80..3a809174f3 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -772,7 +772,7 @@ public: * Insert additional inputs into the transaction by * calling CreateTransaction(); */ - bool FundTransaction(CMutableTransaction& tx, CAmount& nFeeRet, bool overrideEstimatedFeeRate, const CFeeRate& specificFeeRate, int& nChangePosInOut, std::string& strFailReason, bool includeWatching, bool lockUnspents, const CTxDestination& destChange = CNoDestination()); + bool FundTransaction(CMutableTransaction& tx, CAmount& nFeeRet, bool overrideEstimatedFeeRate, const CFeeRate& specificFeeRate, int& nChangePosInOut, std::string& strFailReason, bool includeWatching, bool lockUnspents, const std::set<int>& setSubtractFeeFromOutputs, const CTxDestination& destChange = CNoDestination()); /** * Create a new transaction paying the recipients with a set of coins |