aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2017-02-02 22:33:24 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2017-06-05 23:12:03 +0000
commit891c5eeec2dbf295d14e8f888de02637367dd930 (patch)
treecaf65931f13e4084c10e8a324ab80c94d137856d /src/wallet/wallet.h
parent578ec80d4fcef6be48acf45185d1248bb62bfdbf (diff)
downloadbitcoin-891c5eeec2dbf295d14e8f888de02637367dd930.tar.xz
Wallet: Refactor FundTransaction to accept parameters via CCoinControl
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index a3974bf00b..6f69c16030 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -935,7 +935,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 std::set<int>& setSubtractFeeFromOutputs, bool keepReserveKey = true, const CTxDestination& destChange = CNoDestination());
+ bool FundTransaction(CMutableTransaction& tx, CAmount& nFeeRet, int& nChangePosInOut, std::string& strFailReason, bool lockUnspents, const std::set<int>& setSubtractFeeFromOutputs, CCoinControl, bool keepReserveKey = true);
bool SignTransaction(CMutableTransaction& tx);
/**