diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-20 18:03:11 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-20 18:34:56 +0000 |
commit | 5b7c6ced80faf6f7b2a8d5ef0afea7ed5b306a96 (patch) | |
tree | 4dd2b41d261cab844745f30e5c6d232cf6877058 | |
parent | Merge pull request #1896 (diff) | |
download | monero-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
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
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; |