Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
sam0x17 committed Feb 7, 2025
2 parents 6eaa766 + 8f39a58 commit f97a6ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pallets/collective/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ pub mod pallet {
proposal_weight_bound: Weight,
#[pallet::compact] length_bound: u32,
) -> DispatchResultWithPostInfo {
let _ = ensure_signed(origin)?;
ensure_root(origin)?;

Self::do_close(proposal_hash, index, proposal_weight_bound, length_bound)
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,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: 228,
spec_version: 229,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit f97a6ce

Please sign in to comment.