diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-09-14 23:54:01 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-09-15 09:28:33 +0100 |
commit | cd01bae7359722f4dff3e043fc79f4b2ca71df66 (patch) | |
tree | 164e494356a97b5d930f68a6d0ecb35197e6e2ca /src/wallet/wallet2.h | |
parent | Merge pull request #1053 (diff) | |
download | monero-cd01bae7359722f4dff3e043fc79f4b2ca71df66.tar.xz |
Decrease minimum fee from 0.01/kB to 0.002/kB
The wallet will start using that fee about two weeks after hard
fork 3, when most people will likely have updated their daemons.
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 0e87614b4..0fc25bf8c 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -395,7 +395,7 @@ namespace tools uint64_t get_num_rct_outputs(); void get_hard_fork_info(uint8_t version, uint64_t &earliest_height); - bool use_fork_rules(uint8_t version, uint64_t early_blocks = 0); + bool use_fork_rules(uint8_t version, int64_t early_blocks = 0); std::string get_wallet_file() const; std::string get_keys_file() const; |