diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-03-11 21:31:50 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-03-11 21:31:50 +0000 |
commit | 31d2e0f84d462f09d31afb5e982566fe4a37a76f (patch) | |
tree | f1f003592b5e63624f605f3086199b921ed12495 /src | |
parent | Merge pull request #712 (diff) | |
download | monero-31d2e0f84d462f09d31afb5e982566fe4a37a76f.tar.xz |
wallet_rpc_server: make use_fork_rules public
We will need it in the wallet RPC server
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet2.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index c79da2e15..6c689d4ba 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -348,6 +348,8 @@ namespace tools bool get_tx_key(const crypto::hash &txid, crypto::secret_key &tx_key) const; + bool use_fork_rules(uint8_t version); + private: /*! * \brief Stores wallet information to wallet file. @@ -384,7 +386,6 @@ namespace tools crypto::hash get_payment_id(const pending_tx &ptx) const; void check_acc_out(const cryptonote::account_keys &acc, const cryptonote::tx_out &o, const crypto::public_key &tx_pub_key, size_t i, uint64_t &money_transfered, bool &error) const; void parse_block_round(const cryptonote::blobdata &blob, cryptonote::block &bl, crypto::hash &bl_id, bool &error) const; - bool use_fork_rules(uint8_t version); uint64_t get_upper_tranaction_size_limit(); void check_pending_txes(); |