aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_config.h
diff options
context:
space:
mode:
authorAwfulCrawler <AwfulCrawler@users.noreply.github.com>2016-10-12 14:04:26 +1300
committerGitHub <noreply@github.com>2016-10-12 14:04:26 +1300
commit9c7312883581afda8a67d9a73ba33712da0d9f3e (patch)
tree81d2773e59e6a25a0e4823ebecdd7d8864c35828 /src/cryptonote_config.h
parentMerge pull request #1203 (diff)
downloadmonero-9c7312883581afda8a67d9a73ba33712da0d9f3e.tar.xz
Change default dust threshold to equal fee per kb
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r--src/cryptonote_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h
index 319e18808..66084da3c 100644
--- a/src/cryptonote_config.h
+++ b/src/cryptonote_config.h
@@ -127,7 +127,7 @@ namespace config
{
uint64_t const DEFAULT_FEE_ATOMIC_XMR_PER_KB = 500; // Just a placeholder! Change me!
uint8_t const FEE_CALCULATION_MAX_RETRIES = 10;
- uint64_t const DEFAULT_DUST_THRESHOLD = ((uint64_t)10000000000); // pow(10, 10)
+ uint64_t const DEFAULT_DUST_THRESHOLD = ((uint64_t)2000000000); // 2 * pow(10, 9)
uint64_t const BASE_REWARD_CLAMP_THRESHOLD = ((uint64_t)100000000); // pow(10, 8)
std::string const P2P_REMOTE_DEBUG_TRUSTED_PUB_KEY = "0000000000000000000000000000000000000000000000000000000000000000";