Skip to content

Commit

Permalink
Merge pull request #165 from Jongjan88/pr
Browse files Browse the repository at this point in the history
Update wallet.h
  • Loading branch information
gto90 authored Jan 31, 2024
2 parents f28663e + 87f2b23 commit 54f85f6
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 @@ -97,11 +97,11 @@ static const bool DEFAULT_DISABLE_WALLET = false;
static const bool DEFAULT_DISABLE_DANDELION = false;

//! -maxtxfee default
constexpr CAmount DEFAULT_TRANSACTION_MAXFEE{COIN / 10};
constexpr CAmount DEFAULT_TRANSACTION_MAXFEE{COIN};
//! Discourage users to set fees higher than this amount (in satoshis) per kB
constexpr CAmount HIGH_TX_FEE_PER_KB{COIN};
//! -maxtxfee will warn if called with a higher fee than this amount (in satoshis)
constexpr CAmount HIGH_MAX_TX_FEE{100 * HIGH_TX_FEE_PER_KB};
constexpr CAmount HIGH_MAX_TX_FEE{1000 * HIGH_TX_FEE_PER_KB};
//! Pre-calculated constants for input size estimation in *virtual size*
static constexpr size_t DUMMY_NESTED_P2WPKH_INPUT_SIZE = 91;

Expand Down

0 comments on commit 54f85f6

Please sign in to comment.