Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: rm unnecessary code for eureka #1372

Open
wants to merge 17 commits into
base: rano/eureka/1364
Choose a base branch
from
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ ibc-core-handler = { version = "0.55.1", path = "./ibc-core/ics25-handler", d
ibc-core-router = { version = "0.55.1", path = "./ibc-core/ics26-routing", default-features = false }
ibc-query = { version = "0.55.1", path = "./ibc-query", default-features = false }

ibc-eureka-core-client = { version = "0.55.1", path = "./ibc-eureka-core/ics02-client", default-features = false }
ibc-eureka-core-connection = { version = "0.55.1", path = "./ibc-eureka-core/ics03-connection", default-features = false }
ibc-eureka-core-channel = { version = "0.55.1", path = "./ibc-eureka-core/ics04-channel", default-features = false }
ibc-eureka-core-host = { version = "0.55.1", path = "./ibc-eureka-core/ics24-host", default-features = false }
ibc-eureka-core-handler = { version = "0.55.1", path = "./ibc-eureka-core/ics25-handler", default-features = false }
ibc-eureka-core-router = { version = "0.55.1", path = "./ibc-eureka-core/ics26-routing", default-features = false }
ibc-eureka-core-client = { version = "0.55.1", path = "./ibc-eureka-core/ics02-client", default-features = false }
# ibc-eureka-core-connection = { version = "0.55.1", path = "./ibc-eureka-core/ics03-connection", default-features = false }
ibc-eureka-core-channel = { version = "0.55.1", path = "./ibc-eureka-core/ics04-channel", default-features = false }
ibc-eureka-core-host = { version = "0.55.1", path = "./ibc-eureka-core/ics24-host", default-features = false }
ibc-eureka-core-handler = { version = "0.55.1", path = "./ibc-eureka-core/ics25-handler", default-features = false }
ibc-eureka-core-router = { version = "0.55.1", path = "./ibc-eureka-core/ics26-routing", default-features = false }

ibc-client-tendermint = { version = "0.55.1", path = "./ibc-clients/ics07-tendermint", default-features = false }

Expand All @@ -121,10 +121,10 @@ ibc-client-wasm-types = { version = "0.55.1", path = "./ibc-clients/ics08-
ibc-app-transfer-types = { version = "0.55.1", path = "./ibc-apps/ics20-transfer/types", default-features = false }
ibc-app-nft-transfer-types = { version = "0.55.1", path = "./ibc-apps/ics721-nft-transfer/types", default-features = false }

ibc-eureka-core-client-context = { version = "0.55.1", path = "./ibc-eureka-core/ics02-client/context", default-features = false }
ibc-eureka-core-client-types = { version = "0.55.1", path = "./ibc-eureka-core/ics02-client/types", default-features = false }
ibc-eureka-core-channel-types = { version = "0.55.1", path = "./ibc-eureka-core/ics04-channel/types", default-features = false }
ibc-eureka-core-connection-types = { version = "0.55.1", path = "./ibc-eureka-core/ics03-connection/types", default-features = false }
ibc-eureka-core-client-context = { version = "0.55.1", path = "./ibc-eureka-core/ics02-client/context", default-features = false }
ibc-eureka-core-client-types = { version = "0.55.1", path = "./ibc-eureka-core/ics02-client/types", default-features = false }
ibc-eureka-core-channel-types = { version = "0.55.1", path = "./ibc-eureka-core/ics04-channel/types", default-features = false }
# ibc-eureka-core-connection-types = { version = "0.55.1", path = "./ibc-eureka-core/ics03-connection/types", default-features = false }
ibc-eureka-core-commitment-types = { version = "0.55.1", path = "./ibc-eureka-core/ics23-commitment/types", default-features = false }
ibc-eureka-core-host-cosmos = { version = "0.55.1", path = "./ibc-eureka-core/ics24-host/cosmos", default-features = false }
ibc-eureka-core-host-types = { version = "0.55.1", path = "./ibc-eureka-core/ics24-host/types", default-features = false }
Expand Down
6 changes: 0 additions & 6 deletions ibc-eureka-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ all-features = true

[dependencies]
ibc-eureka-core-client = { workspace = true }
ibc-eureka-core-connection = { workspace = true }
ibc-eureka-core-channel = { workspace = true }
ibc-eureka-core-commitment-types = { workspace = true }
ibc-eureka-core-host = { workspace = true }
Expand All @@ -32,7 +31,6 @@ ibc-primitives = { workspace = true }
default = [ "std" ]
std = [
"ibc-eureka-core-client/std",
"ibc-eureka-core-connection/std",
"ibc-eureka-core-channel/std",
"ibc-eureka-core-commitment-types/std",
"ibc-eureka-core-host/std",
Expand All @@ -42,7 +40,6 @@ std = [
]
serde = [
"ibc-eureka-core-client/serde",
"ibc-eureka-core-connection/serde",
"ibc-eureka-core-channel/serde",
"ibc-eureka-core-commitment-types/serde",
"ibc-eureka-core-host/serde",
Expand All @@ -52,7 +49,6 @@ serde = [
]
borsh = [
"ibc-eureka-core-client/borsh",
"ibc-eureka-core-connection/borsh",
"ibc-eureka-core-channel/borsh",
"ibc-eureka-core-commitment-types/borsh",
"ibc-eureka-core-host/borsh",
Expand All @@ -62,7 +58,6 @@ borsh = [
]
schema = [
"ibc-eureka-core-client/schema",
"ibc-eureka-core-connection/schema",
"ibc-eureka-core-channel/schema",
"ibc-eureka-core-commitment-types/schema",
"ibc-eureka-core-host/schema",
Expand All @@ -74,7 +69,6 @@ schema = [
]
parity-scale-codec = [
"ibc-eureka-core-client/parity-scale-codec",
"ibc-eureka-core-connection/parity-scale-codec",
"ibc-eureka-core-channel/parity-scale-codec",
"ibc-eureka-core-commitment-types/parity-scale-codec",
"ibc-eureka-core-host/parity-scale-codec",
Expand Down
73 changes: 0 additions & 73 deletions ibc-eureka-core/ics03-connection/Cargo.toml

This file was deleted.

48 changes: 0 additions & 48 deletions ibc-eureka-core/ics03-connection/src/delay.rs

This file was deleted.

Loading
Loading