aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/i_core_events.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cryptonote_core/i_core_events.h')
-rw-r--r--src/cryptonote_core/i_core_events.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptonote_core/i_core_events.h b/src/cryptonote_core/i_core_events.h
index addb659ab..5d00858b5 100644
--- a/src/cryptonote_core/i_core_events.h
+++ b/src/cryptonote_core/i_core_events.h
@@ -39,7 +39,8 @@ namespace cryptonote
virtual ~i_core_events() noexcept
{}
- virtual uint64_t get_target_blockchain_height() const = 0;
+ virtual uint64_t get_current_blockchain_height() const = 0;
+ virtual bool is_synchronized() const = 0;
virtual void on_transactions_relayed(epee::span<const cryptonote::blobdata> tx_blobs, relay_method tx_relay) = 0;
};
}