aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_config.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-09-14 23:54:01 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-09-15 09:28:33 +0100
commitcd01bae7359722f4dff3e043fc79f4b2ca71df66 (patch)
tree164e494356a97b5d930f68a6d0ecb35197e6e2ca /src/cryptonote_config.h
parentMerge pull request #1053 (diff)
downloadmonero-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.h3
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