diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-15 15:23:49 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-15 15:23:49 +0200 |
commit | 7c899ec33a0bc7c10b759f062648dbc3c2644023 (patch) | |
tree | 992d19b08a5465a27854ba295414275d730dddf6 /src/cryptonote_config.h | |
parent | Merge pull request #1072 (diff) | |
parent | Decrease minimum fee from 0.01/kB to 0.002/kB (diff) | |
download | monero-7c899ec33a0bc7c10b759f062648dbc3c2644023.tar.xz |
Merge pull request #1074
cd01bae Decrease minimum fee from 0.01/kB to 0.002/kB (moneromooo-monero)
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 |