From c5c45ca660bdd09742d02e55b356fec97b08a2e4 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 10 Dec 2016 15:39:26 +0000 Subject: [PATCH] wallet: bring forward use of the dynamic fee It was 14 days after v4, it is now one day after it. luigi1111's suggestion --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 81472687..fabf642f 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3186,7 +3186,7 @@ uint64_t wallet2::get_dynamic_per_kb_fee_estimate() //---------------------------------------------------------------------------------------------------- uint64_t wallet2::get_per_kb_fee() { - bool use_dyn_fee = use_fork_rules(HF_VERSION_DYNAMIC_FEE, -720 * 14); + bool use_dyn_fee = use_fork_rules(HF_VERSION_DYNAMIC_FEE, -720 * 1); if (!use_dyn_fee) return FEE_PER_KB; try