diff options
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 |