Skip to content

Commit

Permalink
Fix-Qt-Tests: Update incremental fee rate (needs check)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartArray committed Aug 7, 2021
1 parent bd5af37 commit 4c03608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wallet/wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ static const CAmount DEFAULT_TRANSACTION_MINFEE = 100000;
*/
static const CAmount DEFAULT_MAX_AVOIDPARTIALSPEND_FEE = 0;
//! discourage APS fee higher than this amount
constexpr CAmount HIGH_APS_FEE{COIN / 1000000};
constexpr CAmount HIGH_APS_FEE{COIN / 100000000};
//! minimum recommended increment for BIP 125 replacement txs
static const CAmount WALLET_INCREMENTAL_RELAY_FEE = 5000;
static const CAmount WALLET_INCREMENTAL_RELAY_FEE = 1000000;
//! Default for -spendzeroconfchange
static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true;
//! Default for -walletrejectlongchains
Expand Down

0 comments on commit 4c03608

Please sign in to comment.