aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-10-22 22:08:31 +0200
committerRiccardo Spagni <ric@spagni.net>2016-10-22 22:08:31 +0200
commitaf2b1ec606b6c999ffbe777d8e1efbee81055b35 (patch)
treecdaeaed74e3610ab60b3cf70bf704d336df6043c /src
parentMerge pull request #1200 (diff)
parentChange default dust threshold to equal fee per kb (diff)
downloadmonero-af2b1ec606b6c999ffbe777d8e1efbee81055b35.tar.xz
Merge pull request #1216
9c73128 Change default dust threshold to equal fee per kb (AwfulCrawler)
Diffstat (limited to 'src')
-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";