Skip to content

Commit 368422e

Browse files
authored
Enable Passkey transactions on Mainnet (#2199)
# Goal The goal of this PR is to enable Passkey pallet features on Mainnet Closes #2197 # Discussion # Checklist - [x] Spec version incremented?
1 parent 9ba9bdd commit 368422e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

e2e/package-lock.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/frequency/src/lib.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
381381
spec_name: create_runtime_str!("frequency"),
382382
impl_name: create_runtime_str!("frequency"),
383383
authoring_version: 1,
384-
spec_version: 122,
384+
spec_version: 123,
385385
impl_version: 0,
386386
apis: apis::RUNTIME_API_VERSIONS,
387387
transaction_version: 1,
@@ -395,7 +395,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
395395
spec_name: create_runtime_str!("frequency-testnet"),
396396
impl_name: create_runtime_str!("frequency"),
397397
authoring_version: 1,
398-
spec_version: 122,
398+
spec_version: 123,
399399
impl_version: 0,
400400
apis: apis::RUNTIME_API_VERSIONS,
401401
transaction_version: 1,
@@ -956,7 +956,6 @@ impl pallet_frequency_tx_payment::Config for Runtime {
956956
}
957957

958958
/// Configurations for passkey pallet
959-
#[cfg(any(not(feature = "frequency"), feature = "frequency-lint-check"))]
960959
impl pallet_passkey::Config for Runtime {
961960
type RuntimeEvent = RuntimeEvent;
962961
type RuntimeCall = RuntimeCall;
@@ -1248,8 +1247,6 @@ construct_runtime!(
12481247
Capacity: pallet_capacity::{Pallet, Call, Storage, Event<T>, FreezeReason} = 64,
12491248
FrequencyTxPayment: pallet_frequency_tx_payment::{Pallet, Call, Event<T>} = 65,
12501249
Handles: pallet_handles::{Pallet, Call, Storage, Event<T>} = 66,
1251-
// Currently enabled only under feature flag
1252-
#[cfg(any(not(feature = "frequency"), feature = "frequency-lint-check"))]
12531250
Passkey: pallet_passkey::{Pallet, Call, Storage, Event<T>, ValidateUnsigned} = 67,
12541251
}
12551252
);

0 commit comments

Comments
 (0)