get_current_hard_fork_version added

pull/3/head
moneroexamples 5 years ago
parent 298482324c
commit f344e183f0

@ -173,6 +173,12 @@ MicroCore::get_tx_block_height(crypto::hash const& tx_hash) const
return core_storage.get_db().get_tx_block_height(tx_hash);
}
uint64_t
MicroCore::get_current_hard_fork_version() const
{
return core_storage.get_current_hard_fork_version();
}
std::vector<uint64_t>
MicroCore::get_tx_amount_output_indices(uint64_t tx_id) const
{

@ -145,6 +145,9 @@ public:
virtual uint64_t
get_current_blockchain_height() const;
virtual uint64_t
get_current_hard_fork_version() const;
virtual void
get_output_tx_and_index(
uint64_t amount,

Loading…
Cancel
Save