mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
Merge #9615: Wallet incremental fee
4b189c1Change bumpfee result value from 'oldfee' to 'origfee'. (Alex Morcos)0c0c63fIntroduce WALLET_INCREMENTAL_RELAY_FEE (Alex Morcos)e8021ecUse CWallet::GetMinimumFee in bumpfee (Alex Morcos)ae9719aRefactor GetMinimumFee to give option of providing targetFee (Alex Morcos)fe8e8ef[rpc] Add incremental relay fee to getnetworkinfo (Alex Morcos)6b331e6Fix to have miner test aware of new separate block min tx fee (Alex Morcos)de6400dFix missing use of dustRelayFee (Alex Morcos)5b15870Use incrementalRelayFee for BIP 125 replacement (Alex Morcos)
This commit is contained in:
@@ -2802,8 +2802,13 @@ CAmount CWallet::GetRequiredFee(unsigned int nTxBytes)
|
||||
|
||||
CAmount CWallet::GetMinimumFee(unsigned int nTxBytes, unsigned int nConfirmTarget, const CTxMemPool& pool)
|
||||
{
|
||||
// payTxFee is user-set "I want to pay this much"
|
||||
CAmount nFeeNeeded = payTxFee.GetFee(nTxBytes);
|
||||
// payTxFee is the user-set global for desired feerate
|
||||
return GetMinimumFee(nTxBytes, nConfirmTarget, pool, payTxFee.GetFee(nTxBytes));
|
||||
}
|
||||
|
||||
CAmount CWallet::GetMinimumFee(unsigned int nTxBytes, unsigned int nConfirmTarget, const CTxMemPool& pool, CAmount targetFee)
|
||||
{
|
||||
CAmount nFeeNeeded = targetFee;
|
||||
// User didn't set: use -txconfirmtarget to estimate...
|
||||
if (nFeeNeeded == 0) {
|
||||
int estimateFoundTarget = nConfirmTarget;
|
||||
|
||||
Reference in New Issue
Block a user