aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorMichi Lumin <[email protected]>2021-07-21 20:58:12 +0100
committerRoss Nicoll <[email protected]>2021-08-04 09:29:35 +0100
commit1d2380df56e2a5471a306a86fa76649075f12517 (patch)
tree0546711ebaf02c7da86913024fa7dc32aaffec9b /src/wallet/wallet.h
parentMerge pull request #2434 from patricklodder/1.14-activatebestchain-shutdown-fix (diff)
downloaddiscoin-1d2380df56e2a5471a306a86fa76649075f12517.tar.xz
discoin-1d2380df56e2a5471a306a86fa76649075f12517.zip
p2p: Reduce BIP125 replace by fee increment value
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 329923aa3..e3a041e7f 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -56,7 +56,7 @@ static const CAmount DEFAULT_TRANSACTION_MINFEE = COIN;
//mlumin 5/2021: adding a minimum Wallet fee vs relay, currently still 1 COIN, to be reduced.
static const unsigned int DEFAULT_MIN_WALLET_TX_FEE = COIN;
//! minimum recommended increment for BIP 125 replacement txs
-static const CAmount WALLET_INCREMENTAL_RELAY_FEE = COIN * 5;
+static const CAmount WALLET_INCREMENTAL_RELAY_FEE = COIN/10 * 5;
//! target minimum change amount
static const CAmount MIN_CHANGE = COIN;
//! final minimum change amount after paying for fees