Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
fix: Send IntoFuture
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed Jan 29, 2023
1 parent 7c1d6f8 commit f4570ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-contract/src/call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ where
impl<B, M, D> IntoFuture for FunctionCall<B, M, D>
where
Self: 'static,
B: Borrow<M>,
B: Borrow<M> + Send + Sync,
M: Middleware,
D: Detokenize + Send + Sync,
{
Expand Down

0 comments on commit f4570ca

Please sign in to comment.