diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-10-11 21:28:06 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-10-11 21:28:14 +0200 |
commit | 8169d429bf2a0e9beee966b120627f7c9cb436ed (patch) | |
tree | 719d2d3a59330e1cb56dd698e8c1d8bb4012def3 /src/cryptonote_config.h | |
parent | Merge pull request #423 (diff) | |
parent | simplewallet: bump default mixin from 3 to 4 (diff) | |
download | monero-8169d429bf2a0e9beee966b120627f7c9cb436ed.tar.xz |
Merge pull request #425
79c95c1 simplewallet: bump default mixin from 3 to 4 (moneromooo-monero)
ac90d48 from hard fork 2, all outputs must be decomposed (moneromooo-monero)
90ccad1 from hard fork 2, claim a quantized reward in coinbase (moneromooo-monero)
22b1570 cryptonote_format_utils: add a function to tell if an amount is canonical (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r-- | src/cryptonote_config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index c6aa064cf..b042088bd 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -118,6 +118,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 BASE_REWARD_CLAMP_THRESHOLD = ((uint64_t)100000000); // pow(10, 8) std::string const P2P_REMOTE_DEBUG_TRUSTED_PUB_KEY = "0000000000000000000000000000000000000000000000000000000000000000"; uint64_t const CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX = 18; |