diff options
| author | Michi Lumin <[email protected]> | 2021-08-08 18:49:12 +0100 |
|---|---|---|
| committer | michilumin <[email protected]> | 2021-08-11 14:16:01 -0600 |
| commit | f8813f8e134ef1994b595e06ee163b03f465d3c1 (patch) | |
| tree | b9cf43b5a31caf338fe736c0642581a761d43869 /src | |
| parent | Merge pull request #2439 from rnicoll/1.14.4-dust-limit-type-alt (diff) | |
| download | discoin-f8813f8e134ef1994b595e06ee163b03f465d3c1.tar.xz discoin-f8813f8e134ef1994b595e06ee163b03f465d3c1.zip | |
fees: Reduce minimum relay fee to 0.001 DOGE, final change from tx to 0.01
Diffstat (limited to 'src')
| -rw-r--r-- | src/policy/policy.h | 2 | ||||
| -rw-r--r-- | src/validation.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h index 2540f373c..27b9180bb 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -21,7 +21,7 @@ static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 27000; /** Default for -blockmaxweight, which controls the range of block weights the mining code will create **/ static const unsigned int DEFAULT_BLOCK_MAX_WEIGHT = 3000000; /** Default for -blockmintxfee, which sets the minimum feerate for a transaction in blocks created by mining code **/ -static const unsigned int DEFAULT_BLOCK_MIN_TX_FEE = 1000; +static const unsigned int DEFAULT_BLOCK_MIN_TX_FEE = COIN / 100; /** The maximum weight for transactions we're willing to relay/mine */ static const unsigned int MAX_STANDARD_TX_WEIGHT = 400000; /** Maximum number of signature check operations in an IsStandard() P2SH script */ diff --git a/src/validation.h b/src/validation.h index afe5e89ac..b49384d4f 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 CAmount DEFAULT_MIN_RELAY_TX_FEE = COIN; +static const CAmount DEFAULT_MIN_RELAY_TX_FEE = COIN / 1000; //! -maxtxfee default static const CAmount DEFAULT_TRANSACTION_MAXFEE = 400 * COIN; //! Discourage users to set fees higher than this amount (in satoshis) per kB |