Skip to content

Commit

Permalink
Use tendermint-rs branch
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Apr 4, 2023
1 parent 7790eb4 commit dd44561
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ members = [

[patch.crates-io]
# ibc-proto = { git = "https://github.com/cosmos/ibc-proto-rs.git", branch = "main" }
tendermint = { path = "../tendermint-rs/tendermint" }
tendermint-rpc = { path = "../tendermint-rs/rpc" }
tendermint-proto = { path = "../tendermint-rs/proto" }
tendermint-light-client = { path = "../tendermint-rs/light-client" }
tendermint-light-client-verifier = { path = "../tendermint-rs/light-client-verifier" }
tendermint-testgen = { path = "../tendermint-rs/testgen" }
tendermint = { git = "https://github.com/informalsystems/tendermint-rs.git", branch = "romac/new-misbehavior-detector" }
tendermint-rpc = { git = "https://github.com/informalsystems/tendermint-rs.git", branch = "romac/new-misbehavior-detector" }
tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs.git", branch = "romac/new-misbehavior-detector" }
tendermint-light-client = { git = "https://github.com/informalsystems/tendermint-rs.git", branch = "romac/new-misbehavior-detector" }
tendermint-light-client-verifier = { git = "https://github.com/informalsystems/tendermint-rs.git", branch = "romac/new-misbehavior-detector" }
tendermint-testgen = { git = "https://github.com/informalsystems/tendermint-rs.git", branch = "romac/new-misbehavior-detector" }
2 changes: 1 addition & 1 deletion crates/relayer/src/light_client/tendermint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use tracing::{debug, error, trace, warn};

use tendermint_light_client::{
components::{self, io::AtHeight},
detector::Divergence,
light_client::LightClient as TmLightClient,
misbehavior::Divergence,
state::State as LightClientState,
store::{memory::MemoryStore, LightStore},
};
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer/src/light_client/tendermint/detector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use tendermint::{
use tendermint_light_client::{
builder::LightClientBuilder,
components::{clock::FixedClock, io::ProdIo, scheduler},
misbehavior::{detect_divergence, Divergence, Provider},
detector::{detect_divergence, Divergence, Provider},
predicates::ProdPredicates,
store::memory::MemoryStore,
types::{LightBlock, PeerId},
Expand Down

0 comments on commit dd44561

Please sign in to comment.