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.
This commit is contained in:
moneromooo-monero 2016-09-14 23:54:01 +01:00
parent 0fde289e2f
commit cd01bae735
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 21 additions and 15 deletions

View file

@ -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