From 5b7c6ced80faf6f7b2a8d5ef0afea7ed5b306a96 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Mon, 20 Mar 2017 18:03:11 +0000 Subject: [PATCH] wallet2: start using new fee priorities at v5, not 14 days laer Waiting would mean the fee used is 1x base, but the base will have suddenly dropped --- 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 dff848a9..e81b946c 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3379,7 +3379,7 @@ uint64_t wallet2::get_per_kb_fee() int wallet2::get_fee_algorithm() { // changes at v3 and v5 - if (use_fork_rules(5, -720 * 14)) + if (use_fork_rules(5, 0)) return 2; if (use_fork_rules(3, -720 * 14)) return 1;