Skip to content
This repository has been archived by the owner on Mar 13, 2023. It is now read-only.

Commit

Permalink
Move into frames
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest committed Oct 19, 2020
1 parent 3082185 commit dcfe0fd
Show file tree
Hide file tree
Showing 41 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ members = [
"primitives/ethereum-primitives",
"primitives/merkle-patricia-trie",
"primitives/relay",
"frontier/frame/ethereum",
"frontier/rpc",
"frontier/rpc/core",
"frontier/rpc/primitives",
"frontier/consensus",
"frontier/consensus/primitives",
"frame/dvm/ethereum",
"frame/dvm/rpc",
"frame/dvm/rpc/core",
"frame/dvm/rpc/primitives",
"frame/dvm/consensus",
"frame/dvm/consensus/primitives",
]

# The list of dependencies below (which can be both direct and indirect dependencies) are crates
Expand Down
6 changes: 3 additions & 3 deletions bin/node-template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ substrate-frame-rpc-system = { git = "https://github.com/darwini
substrate-prometheus-endpoint = { git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# frontier
evm = { default-features = false, package = "pallet-evm", git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
frontier-rpc = { default-features = false, path = "../../../frontier/rpc" }
frontier-consensus = { path = "../../../frontier/consensus" }
frontier-rpc-primitives = { default-features = false, path = "../../../frontier/rpc/primitives" }
frontier-rpc = { default-features = false, path = "../../../frame/dvm/rpc" }
frontier-consensus = { path = "../../../frame/dvm/consensus" }
frontier-rpc-primitives = { default-features = false, path = "../../../frame/dvm/rpc/primitives" }

[build-dependencies]
# substrate
Expand Down
4 changes: 2 additions & 2 deletions bin/node-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ sp-transaction-pool = { default-features = false, git = "
sp-version = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
# frontier
frame-evm = { default-features = false, package = "pallet-evm", git = "https://github.com/darwinia-network/substrate.git", branch = "common-library" }
frame-ethereum = { version = "0.1.0", default-features = false, package = "pallet-ethereum", path = "../../../frontier/frame/ethereum" }
frontier-rpc-primitives = { default-features = false, path = "../../../frontier/rpc/primitives" }
frame-ethereum = { version = "0.1.0", default-features = false, package = "pallet-ethereum", path = "../../../frame/dvm/ethereum" }
frontier-rpc-primitives = { default-features = false, path = "../../../frame/dvm/rpc/primitives" }

[build-dependencies]
# substrate
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ ethereum-types = { version = "0.9", default-features = false }
rlp = { version = "0.4", default-features = false }
sha3 = { version = "0.8", default-features = false }
libsecp256k1 = { version = "0.3", default-features = false }
frontier-consensus-primitives = { path = "../../consensus/primitives", default-features = false }
frontier-rpc-primitives = { path = "../../rpc/primitives", default-features = false }
frontier-consensus-primitives = { path = "../consensus/primitives", default-features = false }
frontier-rpc-primitives = { path = "../rpc/primitives", default-features = false }
darwinia-support = { default-features = false, path = "../../../frame/support" }

[dev-dependencies]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dcfe0fd

Please sign in to comment.