We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe12099 commit 427a7c0Copy full SHA for 427a7c0
mithril-common/src/chain_observer/interface.rs
@@ -36,6 +36,9 @@ pub trait ChainObserver: Sync + Send {
36
/// Retrieve the current epoch of the Cardano network
37
async fn get_current_epoch(&self) -> Result<Option<Epoch>, ChainObserverError>;
38
39
+ /// Retrieve the current chain point of the Cardano network
40
+ async fn get_current_chain_point(&self) -> Result<Option<ChainPoint>, ChainObserverError>;
41
+
42
/// Retrieve the current stake distribution of the Cardano network
43
async fn get_current_stake_distribution(
44
&self,
0 commit comments