From f613221e6a12a23b522101ed7aa942ba96e6855f Mon Sep 17 00:00:00 2001 From: hounsette Date: Tue, 31 Jan 2023 16:12:13 +0900 Subject: [PATCH] Remove instaciation of pallet contract rpc see: https://github.com/paritytech/substrate/pull/12358 --- node/Cargo.toml | 1 - runtimes/eden/Cargo.toml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/node/Cargo.toml b/node/Cargo.toml index 5574453b45f..6cc4d4ae66c 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -43,7 +43,6 @@ frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", bran try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } -pallet-contracts-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } diff --git a/runtimes/eden/Cargo.toml b/runtimes/eden/Cargo.toml index 3ff7b7a4218..ce596c69869 100644 --- a/runtimes/eden/Cargo.toml +++ b/runtimes/eden/Cargo.toml @@ -38,7 +38,6 @@ std = [ "pallet-aura/std", "pallet-collator-selection/std", "pallet-contracts-primitives/std", - "pallet-contracts-rpc-runtime-api/std", "pallet-contracts/std", "pallet-xcm/std", "polkadot-parachain/std", @@ -186,7 +185,7 @@ pallet-xcm = { git = "https://github.com/paritytech/polkadot.git", default-featu pallet-contracts = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" } pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" } -pallet-contracts-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" } + polkadot-parachain = { git = "https://github.com/paritytech/polkadot.git", default-features = false, branch = "release-v0.9.36" } polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot.git", default-features = false, branch = "release-v0.9.36" } xcm = { git = "https://github.com/paritytech/polkadot.git", default-features = false, branch = "release-v0.9.36" }