diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-05-06 11:01:50 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-05-06 11:01:50 +0200 |
commit | 04eaa9095813b854c4299027c595fb9ebaf6f934 (patch) | |
tree | cdeec105bc51a76f2d265aab08894ccb67d73097 /src/wallet/wallet.h | |
parent | 3b35e4896b5b8be9ffd6dacddb081f69a5b77903 (diff) |
Add more clear interface for CoinControl.h regarding individual feerate
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 7b5168975c..7a9e306f6f 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -740,7 +740,7 @@ public: * Insert additional inputs into the transaction by * calling CreateTransaction(); */ - bool FundTransaction(CMutableTransaction& tx, CAmount& nFeeRet, 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 CTxDestination& destChange = CNoDestination()); /** * Create a new transaction paying the recipients with a set of coins |