diff options
| author | Alex Morcos <[email protected]> | 2016-12-13 11:51:51 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-01-04 13:24:19 -0500 |
| commit | daec955fd68bd0da036a5b446b54ffb01108adcd (patch) | |
| tree | bb6fd4c8f21fa9f4399409dd463d27485ad4fc52 /src/policy/policy.h | |
| parent | Merge #9457: [qt] Select more files for translation (diff) | |
| download | discoin-daec955fd68bd0da036a5b446b54ffb01108adcd.tar.xz discoin-daec955fd68bd0da036a5b446b54ffb01108adcd.zip | |
Introduce -blockmintxfee
Diffstat (limited to 'src/policy/policy.h')
| -rw-r--r-- | src/policy/policy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h index 764ee2780..5c6a7b186 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -20,6 +20,8 @@ static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 750000; static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 0; /** 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; /** 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 */ |