Skip to content

Commit

Permalink
Bump runtime version and allow vesting calls (#3265)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailai-Wang authored Feb 22, 2025
1 parent 1ee2f88 commit b9d1451
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions parachain/runtime/litentry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
impl_name: create_runtime_str!("heima"),
authoring_version: 1,
// same versioning-mechanism as polkadot: use last digit for minor updates
spec_version: 9231,
spec_version: 9233,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -1406,7 +1406,7 @@ impl Contains<RuntimeCall> for NormalModeFilter {
matches!(
call,
// Vesting::vest
RuntimeCall::Vesting(pallet_vesting::Call::vest { .. }) |
RuntimeCall::Vesting(_) |
// ChainBridge
RuntimeCall::ChainBridge(_) |
// Bounties
Expand Down
4 changes: 2 additions & 2 deletions parachain/runtime/paseo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
impl_name: create_runtime_str!("heima"),
authoring_version: 1,
// same versioning-mechanism as polkadot: use last digit for minor updates
spec_version: 9231,
spec_version: 9233,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -1557,7 +1557,7 @@ impl Contains<RuntimeCall> for NormalModeFilter {
matches!(
call,
// Vesting::vest
RuntimeCall::Vesting(pallet_vesting::Call::vest { .. }) |
RuntimeCall::Vesting(_) |
// ChainBridge
RuntimeCall::ChainBridge(_) |
// Bounties
Expand Down

0 comments on commit b9d1451

Please sign in to comment.