mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-21 02:51:02 +00:00
Improve docs for at_latest (#2035)
Tell the user that these functions operate with the last finalized block. Co-authored-by: James Wilson <james@jsdw.me>
This commit is contained in:
@@ -53,7 +53,7 @@ where
|
|||||||
self.at_or_latest(Some(block_ref.into()))
|
self.at_or_latest(Some(block_ref.into()))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtain block details of the latest block hash.
|
/// Obtain block details of the latest finalized block.
|
||||||
pub fn at_latest(
|
pub fn at_latest(
|
||||||
&self,
|
&self,
|
||||||
) -> impl Future<Output = Result<Block<T, Client>, Error>> + Send + 'static {
|
) -> impl Future<Output = Result<Block<T, Client>, Error>> + Send + 'static {
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ where
|
|||||||
self.at_or_latest(Some(block_ref.into()))
|
self.at_or_latest(Some(block_ref.into()))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtain events for the latest block.
|
/// Obtain events for the latest finalized block.
|
||||||
pub fn at_latest(&self) -> impl Future<Output = Result<Events<T>, Error>> + Send + 'static {
|
pub fn at_latest(&self) -> impl Future<Output = Result<Events<T>, Error>> + Send + 'static {
|
||||||
self.at_or_latest(None)
|
self.at_or_latest(None)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ where
|
|||||||
RuntimeApi::new(self.client.clone(), block_ref.into())
|
RuntimeApi::new(self.client.clone(), block_ref.into())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtain a runtime API interface at the latest block hash.
|
/// Obtain a runtime API interface at the latest finalized block.
|
||||||
pub fn at_latest(
|
pub fn at_latest(
|
||||||
&self,
|
&self,
|
||||||
) -> impl Future<Output = Result<RuntimeApi<T, Client>, Error>> + Send + 'static {
|
) -> impl Future<Output = Result<RuntimeApi<T, Client>, Error>> + Send + 'static {
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ where
|
|||||||
Storage::new(self.client.clone(), block_ref.into())
|
Storage::new(self.client.clone(), block_ref.into())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtain storage at the latest block hash.
|
/// Obtain storage at the latest finalized block.
|
||||||
pub fn at_latest(
|
pub fn at_latest(
|
||||||
&self,
|
&self,
|
||||||
) -> impl Future<Output = Result<Storage<T, Client>, Error>> + Send + 'static {
|
) -> impl Future<Output = Result<Storage<T, Client>, Error>> + Send + 'static {
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ where
|
|||||||
ViewFunctionsApi::new(self.client.clone(), block_ref.into())
|
ViewFunctionsApi::new(self.client.clone(), block_ref.into())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Obtain an interface to call View Functions at the latest block hash.
|
/// Obtain an interface to call View Functions at the latest finalized block.
|
||||||
pub fn at_latest(
|
pub fn at_latest(
|
||||||
&self,
|
&self,
|
||||||
) -> impl Future<Output = Result<ViewFunctionsApi<T, Client>, Error>> + Send + 'static {
|
) -> impl Future<Output = Result<ViewFunctionsApi<T, Client>, Error>> + Send + 'static {
|
||||||
|
|||||||
Reference in New Issue
Block a user