Skip to content

Commit

Permalink
Fix tendermint-rpc error
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Sep 20, 2021
1 parent 4b6888b commit 4e49034
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions rpc/src/client/transport/websocket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::collections::HashMap;
use std::convert::{TryFrom, TryInto};
use std::ops::Add;
use std::str::FromStr;
use tendermint::net;
use tendermint_config::net;
use tokio::time::{Duration, Instant};
use tracing::{debug, error};

Expand Down Expand Up @@ -806,7 +806,7 @@ mod test {
use std::collections::HashMap;
use std::path::PathBuf;
use std::str::FromStr;
use tendermint::net;
use tendermint_config::net;
use tokio::fs;
use tokio::net::{TcpListener, TcpStream};
use tokio::task::JoinHandle;
Expand Down
2 changes: 1 addition & 1 deletion tools/abci-test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use futures::StreamExt;
use structopt::StructOpt;
use tendermint::abci::Transaction;
use tendermint::net::Address;
use tendermint_config::net::Address;
use tendermint_rpc::event::EventData;
use tendermint_rpc::query::EventType;
use tendermint_rpc::{Client, SubscriptionClient, WebSocketClient};
Expand Down

0 comments on commit 4e49034

Please sign in to comment.