Skip to content
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.

Commit

Permalink
Bump runtime version 42 -> 43 (#103)
Browse files Browse the repository at this point in the history
Co-authored-by: icodezjb <[email protected]>
  • Loading branch information
icodezjb and icodezjb authored Jun 9, 2022
1 parent 9b6057d commit dea4ed0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/sherpax/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 42,
spec_version: 43,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down
2 changes: 1 addition & 1 deletion xpallets/assets-bridge/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ pub mod pallet {
let require = match ensure_signed_or_root(origin) {
Ok(s) if s == Self::admin_key() => true,
Ok(None) => true,
_ => false
_ => false,
};

ensure!(require, Error::<T>::RequireAdmin);
Expand Down

0 comments on commit dea4ed0

Please sign in to comment.