mirror of
https://github.com/monero-project/monero.git
synced 2025-08-13 01:45:34 -04:00
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:
parent
0fde289e2f
commit
cd01bae735
3 changed files with 21 additions and 15 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue