diff options
| author | Patrick Lodder <[email protected]> | 2021-07-16 21:17:52 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-08-05 18:24:20 +0200 |
| commit | 2dc1adb7fe849f0be47b6e23b6b45702d8440893 (patch) | |
| tree | 601ebf9d1837710dffdb5ff9b96e8acd903a4a9a /src/policy | |
| parent | [fees] introduce configurable hard dust limit (diff) | |
| download | discoin-2dc1adb7fe849f0be47b6e23b6b45702d8440893.tar.xz discoin-2dc1adb7fe849f0be47b6e23b6b45702d8440893.zip | |
[fees] Express policies in COIN instead of Koinu
Diffstat (limited to 'src/policy')
| -rw-r--r-- | src/policy/policy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h index be34b9156..5380f7b5b 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -45,13 +45,13 @@ static const unsigned int MAX_STANDARD_P2WSH_SCRIPT_SIZE = 3600; * standard and should be done with care and ideally rarely. It makes sense to * only increase the dust limit after prior releases were already not creating * outputs below the new threshold */ -static const unsigned int DUST_RELAY_TX_FEE = 1000; +static const unsigned int DUST_RELAY_TX_FEE = COIN / 100000; /** * Dogecoin: Default dust limit that is evaluated when considering whether a * transaction output is required to pay additional fee for relay and inclusion * in blocks. Overridden by -dustlimit */ -static const unsigned int DEFAULT_DUST_LIMIT = 100000000; +static const unsigned int DEFAULT_DUST_LIMIT = COIN / 1; /** * Standard script verification flags that standard transactions will comply |