diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-09-14 23:54:01 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-09-15 09:28:33 +0100 |
commit | cd01bae7359722f4dff3e043fc79f4b2ca71df66 (patch) | |
tree | 164e494356a97b5d930f68a6d0ecb35197e6e2ca /src/cryptonote_config.h | |
parent | Merge pull request #1053 (diff) | |
download | monero-cd01bae7359722f4dff3e043fc79f4b2ca71df66.tar.xz |
Decrease minimum fee from 0.01/kB to 0.002/kB
The wallet will start using that fee about two weeks after hard
fork 3, when most people will likely have updated their daemons.
Diffstat (limited to 'src/cryptonote_config.h')
-rw-r--r-- | src/cryptonote_config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index 50f61e346..319e18808 100644 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -62,7 +62,8 @@ // COIN - number of smallest units in one coin #define COIN ((uint64_t)1000000000000) // pow(10, 12) -#define FEE_PER_KB ((uint64_t)10000000000) // pow(10, 10) +#define FEE_PER_KB_OLD ((uint64_t)10000000000) // pow(10, 10) +#define FEE_PER_KB ((uint64_t)2000000000) // 2 * pow(10, 9) #define ORPHANED_BLOCKS_MAX_COUNT 100 |