From 039fafe5745deb7c32186d1d677b7298233ebf83 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 23 May 2019 02:00:37 +0200 Subject: [PATCH] minimum fee set as default fee to avoid cheap transactions --- src/currency_core/currency_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/currency_core/currency_config.h b/src/currency_core/currency_config.h index 2e4e9303..060f4d2d 100644 --- a/src/currency_core/currency_config.h +++ b/src/currency_core/currency_config.h @@ -47,8 +47,8 @@ #define BASE_REWARD_DUST_THRESHOLD ((uint64_t)1000000) // pow(10, 6) - change this will cause hard-fork! #define DEFAULT_DUST_THRESHOLD ((uint64_t)0)//((uint64_t)100000) // pow(10, 5) -#define TX_DEFAULT_FEE ((uint64_t)10000000000) // pow(10, 5) -#define TX_MINIMUM_FEE ((uint64_t)100000) // pow(10, 5) +#define TX_DEFAULT_FEE ((uint64_t)10000000000) // .01 +#define TX_MINIMUM_FEE ((uint64_t)10000000000) // .01 // #define CURRENCY_FIXED_REWARD_ZONE_HEIGHT 300 // blocks will have fixed reward up to this height (including) // #define CURRENCY_FIXED_REWARD_ZONE_REWARD_AMOUNT ((uint64_t)100000000) // should be TX_MINIMUM_FEE * CURRENCY_FIXED_REWARD_ZONE_FEE_MULTIPLIER