aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-20 18:03:11 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-20 18:34:56 +0000
commit5b7c6ced80faf6f7b2a8d5ef0afea7ed5b306a96 (patch)
tree4dd2b41d261cab844745f30e5c6d232cf6877058 /src/wallet
parentMerge pull request #1896 (diff)
downloadmonero-5b7c6ced80faf6f7b2a8d5ef0afea7ed5b306a96.tar.xz
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
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index dff848a92..e81b946cb 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;