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 d4f6942 commit 8157f6dCopy full SHA for 8157f6d
src/client.rs
@@ -222,7 +222,7 @@ impl Client for WsClient {
222
223
async fn block(&self, id: BlockId) -> eyre::Result<Block> {
224
debug!("Retrieving block {}...", id);
225
- match self.provider.get_block(id).await? {
+ match self.provider.get_block(id).full().await? {
226
Some(t) => Ok(t),
227
None => Err(eyre!("No block")),
228
}
@@ -313,7 +313,7 @@ impl Client for IpcClient {
313
314
315
316
317
318
319
0 commit comments