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

Evm #461

Merged
merged 5 commits into from
Aug 17, 2021
Merged

Evm #461

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Cargo.toml
  • Loading branch information
balqaasem committed Aug 17, 2021
commit 950a083ab3bcb980445fc1eb90843d3da597c6a4
10 changes: 5 additions & 5 deletions lib-serml/evm/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.8", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.8", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.8", default-features = false }
orml-traits = { path = "../../../../lib-openrml/traits", default-features = false }
orml-traits = { path = "../../../lib-openrml/traits", default-features = false }

support = { package = "setheum-support", path = "../../../support", default-features = false }
primitives = { package = "setheum-primitives", path = "../../../../primitives", default-features = false }
support = { package = "setheum-support", path = "../../support", default-features = false }
primitives = { package = "setheum-primitives", path = "../../../primitives", default-features = false }

[dev-dependencies]
env_logger = "0.7"
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.8" }
orml-currencies = { path = "../../../../lib-openrml/currencies" }
orml-tokens = { path = "../../../../lib-openrml/tokens" }
orml-currencies = { path = "../../../lib-openrml/currencies" }
orml-tokens = { path = "../../../lib-openrml/tokens" }

[features]
default = ["std"]
Expand Down