diff --git a/Cargo.lock b/Cargo.lock index 58e8ae0d76..4ea12b3b04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5882,7 +5882,6 @@ dependencies = [ "sp-core", "sp-inherents", "sp-io", - "sp-runtime", "sp-std", ] @@ -5951,7 +5950,6 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "sp-runtime", ] [[package]] diff --git a/client/rpc/src/eth/submit.rs b/client/rpc/src/eth/submit.rs index 7c90ddab35..5d71bb197c 100644 --- a/client/rpc/src/eth/submit.rs +++ b/client/rpc/src/eth/submit.rs @@ -27,8 +27,7 @@ use sp_api::{ApiExt, ProvideRuntimeApi}; use sp_block_builder::BlockBuilder as BlockBuilderApi; use sp_blockchain::HeaderBackend; use sp_inherents::CreateInherentDataProviders; -use sp_runtime::{ - generic::BlockId, traits::Block as BlockT, transaction_validity::TransactionSource, +use sp_runtime::{traits::Block as BlockT, transaction_validity::TransactionSource, }; // Frontier use fc_rpc_core::types::*; diff --git a/frame/dynamic-fee/Cargo.toml b/frame/dynamic-fee/Cargo.toml index 9c16f29698..7c279d2612 100644 --- a/frame/dynamic-fee/Cargo.toml +++ b/frame/dynamic-fee/Cargo.toml @@ -18,7 +18,6 @@ frame-support = { workspace = true } frame-system = { workspace = true } sp-core = { workspace = true } sp-inherents = { workspace = true } -sp-runtime = { workspace = true } sp-std = { workspace = true } # Frontier fp-dynamic-fee = { workspace = true } @@ -28,7 +27,6 @@ fp-evm = { workspace = true } # Substrate pallet-timestamp = { workspace = true, features = ["default"] } sp-io = { workspace = true, features = ["default"] } -sp-runtime = { workspace = true, features = ["default"] } [features] default = ["std"] @@ -38,7 +36,6 @@ std = [ # Substrate "sp-core/std", "sp-inherents/std", - "sp-runtime/std", "sp-std/std", # Substrate "frame-system/std", diff --git a/frame/evm-chain-id/Cargo.toml b/frame/evm-chain-id/Cargo.toml index 365b42e57e..9427a48187 100644 --- a/frame/evm-chain-id/Cargo.toml +++ b/frame/evm-chain-id/Cargo.toml @@ -16,7 +16,6 @@ scale-info = { workspace = true } # Substrate frame-support = { workspace = true } frame-system = { workspace = true } -sp-runtime = { workspace = true } [features] default = ["std"] @@ -26,7 +25,6 @@ std = [ # Substrate "frame-support/std", "frame-system/std", - "sp-runtime/std", ] try-runtime = [ "frame-support/try-runtime",