diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-04-28 22:04:07 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-04-28 22:04:07 +0200 |
commit | 3b35e4896b5b8be9ffd6dacddb081f69a5b77903 (patch) | |
tree | c781ac302b21a99769e14ba5b5ec7288c84daf8d /src/wallet/wallet.h | |
parent | a9c8b744e8875785ff9a3768df3517b2d9ed7a36 (diff) |
[RPC] add feerate 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 c3bd343edd..7b5168975c 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, int& nChangePosInOut, std::string& strFailReason, bool includeWatching, bool lockUnspents, const CTxDestination& destChange = CNoDestination()); + bool FundTransaction(CMutableTransaction& tx, CAmount& nFeeRet, 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 |