mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 21:25:41 +00:00
blocks: Unpin block
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
This commit is contained in:
@@ -193,6 +193,22 @@ where
|
|||||||
self.fetch_call(function, call_parameters).await
|
self.fetch_call(function, call_parameters).await
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Unpin this block.
|
||||||
|
///
|
||||||
|
/// # Note
|
||||||
|
///
|
||||||
|
/// Call this method when you are no longer interested in making queries
|
||||||
|
/// against this block.
|
||||||
|
///
|
||||||
|
/// Failing to call this method will eventually terminate the subscription.
|
||||||
|
pub async fn unpin(self) -> Result<(), Error> {
|
||||||
|
self.client
|
||||||
|
.rpc()
|
||||||
|
.chainhead_unpin(self.subscription_id, self.hash)
|
||||||
|
.await?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
/// Wrapper to fetch the block's body from the `chainHead_body` subscription.
|
/// Wrapper to fetch the block's body from the `chainHead_body` subscription.
|
||||||
async fn fetch_body(
|
async fn fetch_body(
|
||||||
&self,
|
&self,
|
||||||
|
|||||||
Reference in New Issue
Block a user