From 6888ddea7988328314b291e677528c0a99b871a2 Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Wed, 11 Mar 2020 10:23:16 +0100 Subject: [PATCH] Extract IBC queries paths into conditional modules (#24) * Extract IBC queries paths into conditional modules Since these paths currently differ between the Go implementation and the ICS, we need to be able to switch them up at compile-time for when we will need to test against the Go implementation. * Revert tendermint dependency to master --- relayer/relay/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relayer/relay/Cargo.toml b/relayer/relay/Cargo.toml index ec13a37fe1..9e41e64b68 100644 --- a/relayer/relay/Cargo.toml +++ b/relayer/relay/Cargo.toml @@ -11,7 +11,7 @@ authors = [ [dependencies] relayer-modules = { path = "../../modules" } -tendermint = { git = "https://github.com/romac/tendermint-rs.git", branch = "rpc-client-new-sync" } +tendermint = { git = "https://github.com/interchainio/tendermint-rs.git" } anomaly = "0.2.0" humantime-serde = "1.0.0"