Skip to content

Commit

Permalink
fix bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Dec 21, 2024
1 parent 06d8871 commit d5b6bb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zebra-rpc/src/server/http_request_compatibility.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::future::Future;

use std::pin::Pin;

use futures::{future, FutureExt, TryFutureExt};
use futures::{future, FutureExt};
use http_body_util::BodyExt;
use hyper::{body::Bytes, header};
use jsonrpsee::{
Expand Down Expand Up @@ -175,7 +175,7 @@ impl<S> With<Cookie> for HttpRequestMiddleware<S> {

impl<S> Service<HttpRequest<HttpBody>> for HttpRequestMiddleware<S>
where
S: Service<HttpRequest, Response = HttpResponse>,
S: Service<HttpRequest, Response = HttpResponse> + std::clone::Clone + Send + 'static,
S::Error: Into<BoxError> + 'static,
S::Future: Send + 'static,
{
Expand Down

0 comments on commit d5b6bb4

Please sign in to comment.