Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
haerdib committed Dec 8, 2023
1 parent 3a7b7e3 commit b28d5ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/rpc/jsonrpsee_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
*/

use crate::rpc::{Error, Request, Result, RpcParams, Subscribe};
use core::marker::Send;
use futures::executor::block_on;
use jsonrpsee::{
client_transport::ws::{Uri, WsTransportClientBuilder},
Expand All @@ -24,7 +23,7 @@ use jsonrpsee::{
use serde::de::DeserializeOwned;
use serde_json::{value::RawValue, Value};
use std::sync::Arc;
use tokio::{runtime::Handle, sync::oneshot};
use tokio::runtime::Handle;

pub use subscription::SubscriptionWrapper;

Expand Down

0 comments on commit b28d5ef

Please sign in to comment.