Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Antony1060 committed Nov 23, 2023
1 parent a3beea9 commit 2f52e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middleware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ impl<M: Middleware> CCIPReadMiddleware<M> {
block: Option<BlockId>,
) -> Result<(Bytes, Vec<CCIPRequest>), CCIPReadMiddlewareError<M>> {
let mut requests = Vec::new();
return self._call(tx, block, 0, &mut requests).await;
self._call(tx, block, 0, &mut requests).await
}
}

Expand Down

0 comments on commit 2f52e1c

Please sign in to comment.