diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-12-12 22:38:05 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-12-12 22:38:05 +0200 |
commit | 67844f826e88575da4f29f735ce8b676e406be29 (patch) | |
tree | 37aa61e06ded575f54445bae1a6433de872f0e45 | |
parent | Merge pull request #1423 (diff) | |
parent | wallet: bring forward use of the dynamic fee (diff) | |
download | monero-67844f826e88575da4f29f735ce8b676e406be29.tar.xz |
Merge pull request #1425
c5c45ca6 wallet: bring forward use of the dynamic fee (moneromooo-monero)
-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 81472687d..fabf642f1 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 |