diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-07-27 21:18:08 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:29:53 +0100 |
commit | c27194a44426ee680fd6a3992685637b8431be39 (patch) | |
tree | 3a24f8e7cf04332a50b4769386d3b3cf04b03586 /src/wallet/wallet2.h | |
parent | tx_pool: log why a transaction was rejected for version checks (diff) | |
download | monero-c27194a44426ee680fd6a3992685637b8431be39.tar.xz |
wallet: do not try to use rct txes a few blocks before the fork
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 3be46882a..ef4cec6eb 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -391,8 +391,8 @@ namespace tools bool get_tx_key(const crypto::hash &txid, crypto::secret_key &tx_key) const; - - bool use_fork_rules(uint8_t version); + void get_hard_fork_info(uint8_t version, uint64_t &earliest_height); + bool use_fork_rules(uint8_t version, uint64_t early_blocks = 0); std::string get_wallet_file() const; std::string get_keys_file() const; |