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/validation.h | |
| parent | Use CAmount for amounts (diff) | |
| download | discoin-c42b38ea5110008f2d74abb02ee363ea9bb64188.tar.xz discoin-c42b38ea5110008f2d74abb02ee363ea9bb64188.zip | |
Use CAmount for constant amounts too
Diffstat (limited to 'src/validation.h')
| -rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index 138103803..afe5e89ac 100644 --- a/src/validation.h +++ b/src/validation.h @@ -54,7 +54,7 @@ static const bool DEFAULT_WHITELISTRELAY = true; /** Default for DEFAULT_WHITELISTFORCERELAY. */ static const bool DEFAULT_WHITELISTFORCERELAY = true; /** Default for -minrelaytxfee, minimum relay fee for transactions */ -static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = COIN; +static const CAmount DEFAULT_MIN_RELAY_TX_FEE = COIN; //! -maxtxfee default static const CAmount DEFAULT_TRANSACTION_MAXFEE = 400 * COIN; //! Discourage users to set fees higher than this amount (in satoshis) per kB |