Skip to content

Commit

Permalink
Remove namada_io from light-sdk deps
Browse files Browse the repository at this point in the history
  • Loading branch information
batconjurer committed Sep 5, 2024
1 parent aa2cf20 commit 87675d5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/light_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ blocking = ["tokio"]
namada-eth-bridge = ["namada_sdk/namada-eth-bridge"]

[dependencies]
namada_io = { path = "../io" }
namada_sdk = { path = "../sdk" }

borsh.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/light_sdk/src/reading/asynchronous/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use std::str::FromStr;

use namada_io::StdIo;
use namada_sdk::address::Address;
use namada_sdk::error::{EncodingError, Error};
use namada_sdk::io::StdIo;
use namada_sdk::queries::RPC;
use namada_sdk::rpc;
use namada_sdk::state::LastBlock;
Expand Down
2 changes: 1 addition & 1 deletion crates/light_sdk/src/writing/asynchronous/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::str::FromStr;

use namada_io::Client;
use namada_sdk::error::{EncodingError, Error, TxSubmitError};
use namada_sdk::io::Client;
use namada_sdk::tx::Tx;
use tendermint_config::net::Address as TendermintAddress;
use tendermint_rpc::endpoint::broadcast::tx_sync::Response;
Expand Down

0 comments on commit 87675d5

Please sign in to comment.