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 | |
| parent | 2d0fbaf35bc041a388f4b49c72dd59f07c1f43ee (diff) | |
| download | monzero-core-c5c45ca660bdd09742d02e55b356fec97b08a2e4.tar.gz monzero-core-c5c45ca660bdd09742d02e55b356fec97b08a2e4.tar.xz monzero-core-c5c45ca660bdd09742d02e55b356fec97b08a2e4.zip | |
wallet: bring forward use of the dynamic fee
It was 14 days after v4, it is now one day after it.
luigi1111's suggestion
| -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 |
