Skip to content

Commit

Permalink
Temporary disable custom signatures pallet (#401)
Browse files Browse the repository at this point in the history
* Temporary disable custom signatures pallet

* Bump version
  • Loading branch information
akru authored Sep 2, 2021
1 parent 09d0b07 commit 289d727
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions runtime/shiden/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("shiden"),
impl_name: create_runtime_str!("shiden"),
authoring_version: 1,
spec_version: 9,
spec_version: 10,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -251,13 +251,15 @@ parameter_types! {
pub const EcdsaUnsignedPriority: TransactionPriority = TransactionPriority::max_value() / 2;
}

/*
impl pallet_custom_signatures::Config for Runtime {
type Event = Event;
type Call = Call;
type Signature = pallet_custom_signatures::ethereum::EthereumSignature;
type Signer = <Signature as Verify>::Signer;
type UnsignedPriority = EcdsaUnsignedPriority;
}
*/

impl pallet_utility::Config for Runtime {
type Event = Event;
Expand Down Expand Up @@ -529,7 +531,7 @@ construct_runtime!(
Identity: pallet_identity::{Pallet, Call, Storage, Event<T>} = 12,
Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 13,
Multisig: pallet_multisig::{Pallet, Call, Storage, Event<T>} = 14,
EthCall: pallet_custom_signatures::{Pallet, Call, Event<T>, ValidateUnsigned} = 15,
//EthCall: pallet_custom_signatures::{Pallet, Call, Event<T>, ValidateUnsigned} = 15,

ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Event<T>} = 20,
ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,
Expand Down

0 comments on commit 289d727

Please sign in to comment.