From 33247b2a1625cb8573a697d2139f3dde77f364ab Mon Sep 17 00:00:00 2001 From: salman01zp Date: Thu, 14 Sep 2023 16:27:03 +0530 Subject: [PATCH] update deps and fmt --- crates/relayer-types/Cargo.toml | 4 +--- crates/tx-queue/src/substrate/mod.rs | 3 ++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/crates/relayer-types/Cargo.toml b/crates/relayer-types/Cargo.toml index c6f12820..e92903c3 100644 --- a/crates/relayer-types/Cargo.toml +++ b/crates/relayer-types/Cargo.toml @@ -19,9 +19,7 @@ webb = { workspace = true } # Used by ethers (but we need it to be vendored with the lib). native-tls = { workspace = true } ethereum-types = { workspace = true } -jsonrpsee = { workspace = true, features = ["macros", - "ws-client", - "http-client"]} +jsonrpsee = { workspace = true, features = ["macros","ws-client"]} http = "0.2.9" subxt-signer = { workspace = true } tiny-bip39 = "1.0.0" diff --git a/crates/tx-queue/src/substrate/mod.rs b/crates/tx-queue/src/substrate/mod.rs index 4fb7e1c3..9f054163 100644 --- a/crates/tx-queue/src/substrate/mod.rs +++ b/crates/tx-queue/src/substrate/mod.rs @@ -77,7 +77,8 @@ mod tests { }; let store = webb_relayer_store::SledStore::temporary()?; let context = - webb_relayer_context::RelayerContext::new(config, store.clone()).await?; + webb_relayer_context::RelayerContext::new(config, store.clone()) + .await?; let client = context .substrate_provider::(chain_id) .await?;