diener workspacify

This commit is contained in:
Serban Iorga
2024-04-05 10:09:13 +03:00
committed by Bastian Köcher
parent 6be8898211
commit 4ad46c8170
38 changed files with 988 additions and 412 deletions
@@ -49,14 +49,14 @@ bp-messages = { path = "../../primitives/messages" }
# Substrate Dependencies
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
frame-support = { path = "../../../substrate/frame/support" }
frame-system = { path = "../../../substrate/frame/system" }
pallet-balances = { path = "../../../substrate/frame/balances" }
pallet-grandpa = { path = "../../../substrate/frame/grandpa" }
sp-core = { path = "../../../substrate/primitives/core" }
sp-consensus-grandpa = { path = "../../../substrate/primitives/consensus/grandpa" }
sp-runtime = { path = "../../../substrate/primitives/runtime" }
[dev-dependencies]
pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
relay-substrate-client = { path = "../client-substrate", features = ["test-helpers"] }