diff options
| author | Ross Nicoll <[email protected]> | 2021-08-08 21:41:35 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2021-08-08 21:41:35 +0100 |
| commit | c42b38ea5110008f2d74abb02ee363ea9bb64188 (patch) | |
| tree | 4a7f5a91d3eb670b7c8fc19fcdd12969fa0f0ed6 /src/wallet | |
| parent | Use CAmount for amounts (diff) | |
| download | discoin-c42b38ea5110008f2d74abb02ee363ea9bb64188.tar.xz discoin-c42b38ea5110008f2d74abb02ee363ea9bb64188.zip | |
Use CAmount for constant amounts too
Diffstat (limited to 'src/wallet')
| -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 e3a041e7f..32db83f24 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -54,7 +54,7 @@ static const CAmount DEFAULT_FALLBACK_FEE = COIN; //! -mintxfee default 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; +static const CAmount DEFAULT_MIN_WALLET_TX_FEE = COIN; //! minimum recommended increment for BIP 125 replacement txs static const CAmount WALLET_INCREMENTAL_RELAY_FEE = COIN/10 * 5; //! target minimum change amount |