diff --git a/Cargo.lock b/Cargo.lock index 5e8c95cc1..47ec8bb7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4918,7 +4918,7 @@ dependencies = [ [[package]] name = "hydradx-runtime" -version = "264.0.0" +version = "265.0.0" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", diff --git a/runtime/hydradx/Cargo.toml b/runtime/hydradx/Cargo.toml index 2763a8943..52d3801da 100644 --- a/runtime/hydradx/Cargo.toml +++ b/runtime/hydradx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hydradx-runtime" -version = "264.0.0" +version = "265.0.0" authors = ["GalacticCouncil"] edition = "2021" license = "Apache 2.0" diff --git a/runtime/hydradx/src/lib.rs b/runtime/hydradx/src/lib.rs index c43d03c37..a0501eee8 100644 --- a/runtime/hydradx/src/lib.rs +++ b/runtime/hydradx/src/lib.rs @@ -64,7 +64,6 @@ use sp_std::{convert::From, prelude::*}; use sp_version::NativeVersion; use sp_version::RuntimeVersion; // A few exports that help ease life for downstream crates. -use crate::evm::precompiles::erc20_mapping::SetCodeForErc20Precompile; use frame_support::{construct_runtime, pallet_prelude::Hooks, weights::Weight}; pub use hex_literal::hex; use orml_traits::MultiCurrency; @@ -112,7 +111,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("hydradx"), impl_name: create_runtime_str!("hydradx"), authoring_version: 1, - spec_version: 264, + spec_version: 265, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -264,17 +263,8 @@ pub type UncheckedExtrinsic = fp_self_contained::UncheckedExtrinsic
; /// Executive: handles dispatch to the various modules. -pub type Executive = frame_executive::Executive< - Runtime, - Block, - frame_system::ChainContext