From cd01bae7359722f4dff3e043fc79f4b2ca71df66 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Wed, 14 Sep 2016 23:54:01 +0100 Subject: 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. --- src/cryptonote_config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/cryptonote_config.h') 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 -- cgit v1.2.3