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

Commit

Permalink
REVERTME: diener update --polkadot --branch ao-recovery-try-connect &…
Browse files Browse the repository at this point in the history
…& cargo update -p polkadot-primitives
  • Loading branch information
ordian committed Oct 7, 2022
1 parent 3f4a571 commit 3cc9182
Show file tree
Hide file tree
Showing 33 changed files with 367 additions and 365 deletions.
484 changes: 243 additions & 241 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions client/collator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-client-consensus-common = { path = "../consensus/common" }
Expand All @@ -37,7 +37,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-test-client = { path = "../../test/client" }
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-relay-chain-interface = { path = "../../relay-chain-interface" }
Expand Down
12 changes: 6 additions & 6 deletions client/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
Expand All @@ -44,9 +44,9 @@ sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "maste
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-primitives-core = { path = "../../primitives/core" }
Expand Down
8 changes: 4 additions & 4 deletions client/pov-recovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", br
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-primitives-core = { path = "../../primitives/core" }
Expand Down
10 changes: 5 additions & 5 deletions client/relay-chain-inprocess-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, features = ["cli"] }
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-cli = { git = "https://github.com/paritytech/polkadot", default-features = false, features = ["cli"] , branch = "ao-recovery-try-connect" }
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-primitives-core = { path = "../../primitives/core" }
Expand All @@ -36,5 +36,5 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
4 changes: 2 additions & 2 deletions client/relay-chain-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

cumulus-primitives-core = { path = "../../primitives/core" }

Expand Down
2 changes: 1 addition & 1 deletion client/relay-chain-rpc-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"


[dependencies]
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

cumulus-primitives-core = { path = "../../primitives/core" }
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
Expand Down
2 changes: 1 addition & 1 deletion client/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-client-cli = { path = "../cli" }
Expand Down
2 changes: 1 addition & 1 deletion pallets/dmp-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pallets/parachain-system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sp-trie = { git = "https://github.com/paritytech/substrate", default-features =
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "master" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-pallet-parachain-system-proc-macro = { path = "proc-macro", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pallets/solo-to-para/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-pallet-parachain-system = { default-features = false, path = "../parachain-system" }
Expand Down
2 changes: 1 addition & 1 deletion pallets/xcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

cumulus-primitives-core = { path = "../../primitives/core", default-features = false }

Expand Down
6 changes: 3 additions & 3 deletions pallets/xcmp-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
Expand All @@ -34,7 +34,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-pallet-parachain-system = { path = "../parachain-system" }
Expand Down
8 changes: 4 additions & 4 deletions parachain-template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }

# Polkadot
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "ao-recovery-try-connect" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-client-cli = { path = "../../client/cli" }
Expand Down
12 changes: 6 additions & 6 deletions parachain-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot
pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions parachains/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }

# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
pallet-collator-selection = { path = "../../pallets/collator-selection", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion parachains/pallets/ping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", default-features
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

cumulus-primitives-core = { path = "../../../primitives/core", default-features = false }
cumulus-pallet-xcm = { path = "../../../pallets/xcm", default-features = false }
Expand Down
18 changes: 9 additions & 9 deletions parachains/runtimes/assets/statemine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }

# Polkadot
kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "ao-recovery-try-connect" }

# Cumulus
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
Expand All @@ -68,7 +68,7 @@ cumulus-primitives-utility = { path = "../../../../primitives/utility", default-
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
parachain-info = { path = "../../../pallets/parachain-info", default-features = false }
parachains-common = { path = "../../../common", default-features = false }
pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false, optional = true }
pallet-xcm-benchmarks = { git = "https://github.com/paritytech/polkadot", default-features = false, optional = true , branch = "ao-recovery-try-connect" }


[dev-dependencies]
Expand Down
Loading

0 comments on commit 3cc9182

Please sign in to comment.