From 79735033a3724e4098ccaa675b3b785276d484c5 Mon Sep 17 00:00:00 2001 From: Abner Zheng Date: Fri, 23 Feb 2024 23:47:33 +0800 Subject: [PATCH] replace async_trait' with '->impl' for trait 'TraceApiClient' --- crates/rpc/rpc-testing-util/src/trace.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/rpc/rpc-testing-util/src/trace.rs b/crates/rpc/rpc-testing-util/src/trace.rs index b2e6ce9c3803..2d3cff72a85d 100644 --- a/crates/rpc/rpc-testing-util/src/trace.rs +++ b/crates/rpc/rpc-testing-util/src/trace.rs @@ -46,7 +46,6 @@ pub type TraceFilterResult = pub type TraceCallResult = Result; /// An extension trait for the Trace API. -#[async_trait::async_trait] pub trait TraceApiExt { /// The provider type that is used to make the requests. type Provider; @@ -236,7 +235,6 @@ impl<'a> std::fmt::Debug for ReplayTransactionStream<'a> { } } -#[async_trait::async_trait] impl TraceApiExt for T { type Provider = T;