diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-10 15:39:26 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-10 15:39:26 +0000 |
commit | c5c45ca660bdd09742d02e55b356fec97b08a2e4 (patch) | |
tree | e88eca71749d1171e42d9e61699b571c30461d2c /src/wallet/wallet2.cpp | |
parent | Merge pull request #1422 (diff) | |
download | monero-c5c45ca660bdd09742d02e55b356fec97b08a2e4.tar.xz |
wallet: bring forward use of the dynamic fee
It was 14 days after v4, it is now one day after it.
luigi1111's suggestion
Diffstat (limited to 'src/wallet/wallet2.cpp')
-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 |