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/policy | |
| 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/policy')
| -rw-r--r-- | src/policy/policy.h | 2 |
1 files changed, 1 insertions, 1 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 */ |