Skip to content

Commit

Permalink
refactor ethereum bridge file struct
Browse files Browse the repository at this point in the history
  • Loading branch information
hackfisher committed Nov 25, 2019
1 parent cd05778 commit 100013b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ members = [
"srml/kton",
"srml/staking",

"srml/chainrelay/bridge/ethereum",
"srml/ethereum-bridge",
]

exclude = ["node/runtime/wasm"]
Expand Down
2 changes: 1 addition & 1 deletion node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ staking = { package = "darwinia-staking", path = "../../srml/staking", default-f

merkle-mountain-range = { path = "../../core/merkle-mountain-range", default-features = false }

ethereum-bridge = { package = "darwinia-ethereum-bridge", path = "../../srml/chainrelay/bridge/ethereum", default-features = false }
ethereum-bridge = { package = "darwinia-ethereum-bridge", path = "../../srml/ethereum-bridge", default-features = false }

[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.2", git = "https://github.com/darwinia-network/substrate.git", branch = "darwinia-develop" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darwinia-ethereum-bridge"
version = "0.1.0"
version = "0.2.0"
authors = ["Xavier Lau <c.estlavie@icloud.com>"]
edition = "2018"

Expand All @@ -15,8 +15,8 @@ rstd = { package = "sr-std", git = "https://github.com/darwinia-network/substrat
support = { package = "srml-support", git = "https://github.com/darwinia-network/substrate.git", branch = "darwinia-develop", default-features = false }
system = { package = "srml-system", git = "https://github.com/darwinia-network/substrate.git", branch = "darwinia-develop", default-features = false }

darwinia-support = { path = "../../../support", default-features = false }
merkle-mountain-range = { path = "../../../../core/merkle-mountain-range", default-features = false }
darwinia-support = { path = "../support", default-features = false }
merkle-mountain-range = { path = "../../core/merkle-mountain-range", default-features = false }

[features]
default = ["std"]
Expand Down
File renamed without changes.

0 comments on commit 100013b

Please sign in to comment.