diff --git a/Cargo.toml b/Cargo.toml index 4983b346225b..f4b56f28fd81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.24.1" tempfile = "3.2.0" tokio = "1.19.2" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4cc97cf9af8d..fcd95e59c457 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -25,22 +25,22 @@ polkadot-client = { path = "../node/client", optional = true } polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } +sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["wasmtime", "db", "cli", "hostperfcheck", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 9bbe8f516afb..d46601796b7f 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index f259470ad418..e5d258470b38 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thiserror = "1.0.31" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index f252ade32892..6c62d567a8f3 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,37 +5,37 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index fdffe1922a64..d3ee151fd3d0 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thiserror = "1.0.31" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index f2572cac8232..b67afa794dc3 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -24,20 +24,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [dev-dependencies] async-trait = "0.1.57" parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 9cea9f1bdc24..f3703afb9b9f 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 474cac5908b0..9f28fe1d0284 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } @@ -19,11 +19,11 @@ thiserror = "1.0.31" fatality = "0.0.6" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index c10c60518235..cb34723ccc99 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } wasm-timer = "0.2.5" thiserror = "1.0.31" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 29464f603340..a9d7b3b276af 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.57" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index 51d860ce2f0a..c104f622c621 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "3.1.5" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index 8d9875b6f389..05504ec61ca3 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "3.1.5" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } parking_lot = "0.12.0" assert_matches = "1" kvdb-memorydb = "0.11.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index bc22b40c8529..5604b96ef99f 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -18,19 +18,19 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] kvdb-memorydb = "0.11.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } futures-timer = "3.0.2" -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] # If not enabled, the dispute coordinator will do nothing. diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index cfb4605449b3..7c7e991270e9 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.31" async-trait = "0.1.57" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 4f18c10aba35..5217d99ef3ae 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -18,8 +18,8 @@ rand = "0.8.5" fatality = "0.0.6" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index ce348e73855f..55074d324de0 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index c30b62589230..8cb2e7a1d380 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -25,15 +25,15 @@ parity-scale-codec = { version = "3.1.5", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index d16e31019a89..5ba2da811089 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" } memory-lru = "0.1.0" parity-util-mem = { version = "0.11.0", default-features = false } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -18,10 +18,10 @@ polkadot-node-subsystem-types = { path = "../../subsystem-types" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index b47999aa0e32..30d4c7908770 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thiserror = "1.0.31" log = "0.4.17" parity-scale-codec = { version = "3.1.5", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index cfc56307b146..b210ff6409a2 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,8 +27,8 @@ parity-util-mem = { version = "0.11.0", default-features = false, features = ["j color-eyre = { version = "0.6.1", default-features = false } assert_matches = "1.5" async-trait = "0.1.57" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } clap = { version = "3.1", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -40,5 +40,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index a5221a05dbd8..436741a35b31 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ gum = { package = "tracing-gum", path = "../gum" } metered = { package = "prioritized-metered-channel", path = "../metered-channel" , "version" = "0.2.0" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } codec = { package = "parity-scale-codec", version = "3.0.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.20", default-features = false, features = ["http1", "tcp"] } tokio = "1.19.2" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index ac34d57d586b..26bb3b2ee0a9 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -16,8 +16,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "gav-no-stored-call" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 43d56a1ace24..a5dc82047201 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thiserror = "1.0.31" rand = "0.8.5" derive_more = "0.99.17" @@ -24,10 +24,10 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index fce9755a05a3..4d21ff498fd6 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -19,7 +19,7 @@ polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] assert_matches = "1.4.0" @@ -27,10 +27,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.17" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index e3a4fd3d2095..44e5f6da8f7d 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -16,10 +16,10 @@ rand = "0.8" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } maplit = "1.0.2" log = "0.4.17" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 809c06a76b81..2bb35293b238 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -11,9 +11,9 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -26,7 +26,7 @@ thiserror = "1" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index df9e75c9e951..3abdf2b0c150 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -10,9 +10,9 @@ futures = "0.3.21" futures-timer = "3" gum = { package = "tracing-gum", path = "../../gum" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.17" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } parity-scale-codec = { version = "3.1.5", features = ["std"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index f50f24bf42c8..3d4b9ae91dd5 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thiserror = "1.0.31" fatality = "0.0.6" lru = "0.7.7" @@ -25,9 +25,9 @@ lru = "0.7.7" [dev-dependencies] async-trait = "0.1.57" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 38e9a5730178..76f9bd7c8798 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,10 +22,10 @@ rand_chacha = { version = "0.3.1", default-features = false } gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 04347a801090..2579605a69d6 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -12,8 +12,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } strum = { version = "0.24", features = ["derive"] } futures = "0.3.21" thiserror = "1.0.31" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index a173ee865e20..c0125f180c14 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,13 +24,13 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index d25639084eb5..839e1b937f6c 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -19,12 +19,12 @@ orchestra = { path = "../orchestra" } gum = { package = "tracing-gum", path = "../gum" } lru = "0.7" parity-util-mem = { version = "0.11.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } async-trait = "0.1.57" [dev-dependencies] metered = { package = "prioritized-metered-channel", path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.2.1" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 2e916df6a87e..526fd6b5bf51 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.6" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.31" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 049b3f0c4683..cfd49a12c94f 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -7,60 +7,60 @@ rust-version = "1.60" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index aa91f4c88695..4058dde7ae8f 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index 24274dd22608..ea759ba24f0f 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,11 +14,11 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } orchestra = { path = "../orchestra" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thiserror = "1.0.31" async-trait = "0.1.57" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index d515be37fe3e..c74ba27d7c51 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -28,9 +28,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered = { package = "prioritized-metered-channel", path = "../metered-channel" , "version" = "0.2.0" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } kvdb = "0.11.0" parity-util-mem = { version = "0.11", default-features = false } diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index 64df4beebda7..b8f1727f57a0 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index c4ff1923eb2d..36edec9ff308 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -26,41 +26,41 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "gav-no-stored-call" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } serde_json = "1.0.81" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } tokio = { version = "1.19.2", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 42ffbfab1fa6..c77ca529168c 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index e1877440b070..d82b428cffdd 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index f54809c34df2..e6b07f0d9cef 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.4", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "gav-no-stored-call" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index 0463711130d2..99af9afd44b5 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } tokio = { version = "1.19.2", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index 954d64abc9c4..3667dfb27dc8 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index 4bc3e6d08b68..c4e177022067 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -9,16 +9,16 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.4", features = [ "global" ] } log = { version = "0.4.17", default-features = false } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "gav-no-stored-call" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/collator/Cargo.toml b/parachain/test-parachains/undying/collator/Cargo.toml index a9b5eed27e6d..ec8112a5209f 100644 --- a/parachain/test-parachains/undying/collator/Cargo.toml +++ b/parachain/test-parachains/undying/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } tokio = { version = "1.19", features = ["macros"] } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index d018cfdf9e54..9b6c707c2ce7 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2021" serde = { version = "1.0.137", optional = true, features = ["derive"] } scale-info = { version = "2.1.2", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } hex-literal = "0.3.4" parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index ed086c87cfc9..deea6c7e9244 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-primitives = { path = "../" } rand = "0.8.5" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 570f156190b4..643adbb3cb91 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,26 +7,26 @@ edition = "2021" [dependencies] jsonrpsee = { version = "0.15.1", features = ["server"] } polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index e3a06626b3ef..30c5f2093f3a 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } serde_json = "1.0.81" libsecp256k1 = "0.7.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers" } diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index ce15d30f7539..675e5c0856c1 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" paste = "1.0" enumn = "0.1.4" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 5a52aa9ea7ae..66f8b0aa599c 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,77 +16,77 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -100,16 +100,16 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } separator = "0.4.1" serde_json = "1.0.81" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } tokio = { version = "1.19.2", features = ["macros"] } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 4498a22dc214..0610c236d5ef 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 97f9c4373900..97587a0c7b61 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } parity-scale-codec = { version = "3.1.5", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 1feeb3540b1c..2ad3cd558a84 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,29 +14,29 @@ serde = { version = "1.0.137", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "gav-no-stored-call" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -50,11 +50,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 2173bcdd5bba..55e13c891d33 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,72 +16,72 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -95,16 +95,16 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } serde_json = "1.0.81" separator = "0.4.1" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } tokio = { version = "1.19.2", features = ["macros"] } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index 00a31ed619bb..217838242615 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 9858b8e5b452..3e8fbc3fdb02 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -14,69 +14,69 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -91,13 +91,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } separator = "0.4.1" serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index 70a523dad94e..c4935221fa8a 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 68c9b7116a45..66a1d1ac1ca3 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,44 +15,44 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -66,12 +66,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 35c2ebf10d9d..51563bfa57b8 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 2cea436f17da..eb4157ed6ed7 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,73 +15,73 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -96,15 +96,15 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } serde_json = "1.0.81" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } tokio = { version = "1.19.2", features = ["macros"] } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index fa4868616d34..5d12f0330c9d 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 06973daff94b..afdc433bafed 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index a8ffb6b1c9ee..b9669d1db4b1 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index d3999c779ef1..64341447d490 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { path = "../../../runtime/polkadot/constants" } kusama-runtime-constants = { path = "../../../runtime/kusama/constants" } westend-runtime-constants = { path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } clap = { version = "3.1", features = ["derive"] } log = "0.4.17" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 1d0e4f4f54a4..8b1668eb9d56 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -15,22 +15,22 @@ serde = "1.0.137" serde_json = "1.0" thiserror = "1.0.31" tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } diff --git a/xcm/Cargo.toml b/xcm/Cargo.toml index d8d93a1951ae..9b4ba37f73eb 100644 --- a/xcm/Cargo.toml +++ b/xcm/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive", "max-encoded-len"] } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } derivative = {version = "2.2.0", default-features = false, features = [ "use_core" ] } log = { version = "0.4.17", default-features = false } xcm-procedural = { path = "procedural" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index f3afebcc7e80..17503e64adf5 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.17" [dev-dependencies] -pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } -pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } +sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "gav-no-stored-call" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index e090859dce8c..8d412fb94707 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "2.1.2", default-features = false, features = ["derive" serde = { version = "1.0.137", optional = true, features = ["derive"] } log = { version = "0.4.17", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -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" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gav-no-stored-call" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 35936e068c67..853295cfe3e1 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "3.1.5", default-features = false, features = [ scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } log = { version = "0.4.17", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index 493dbbd3e869..2fbdba367ff4 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.29" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } log = { version = "0.4.17", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index 3a7359ab94ec..7d388e4a6d34 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.29" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "gav-no-stored-call" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index d9edc64d5198..692cb60a30be 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } paste = "1.0.7" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index ed6ff1eb639f..7b29bdb598f5 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } scale-info = { version = "2.1.2", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index f1f883b7c62f..ed88e523f2f8 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "3.0.0" } honggfuzz = "0.5.54" scale-info = { version = "2.1.2", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "gav-no-stored-call" } xcm = { path = "../../" } xcm-simulator = { path = "../" }