Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,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: 245,
spec_version: 246,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
2 changes: 2 additions & 0 deletions runtime/src/precompiles/staking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ impl StakingPrecompile {
}

#[precompile::public("getTotalColdkeyStake(bytes32)")]
#[precompile::view]
fn get_total_coldkey_stake(
_handle: &mut impl PrecompileHandle,
coldkey_h256: H256,
Expand All @@ -110,6 +111,7 @@ impl StakingPrecompile {
}

#[precompile::public("getTotalHotkeyStake(bytes32)")]
#[precompile::view]
fn get_total_hotkey_stake(
_handle: &mut impl PrecompileHandle,
hotkey_h256: H256,
Expand Down
Loading