Skip to content

Commit 0b30f3b

Browse files
Update runtime/src/precompiles/staking.rs
Co-authored-by: Cameron Fairchild <[email protected]>
1 parent fd8fd53 commit 0b30f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/src/precompiles/staking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl StakingPrecompile {
5959
id if id == get_method_id("removeStake(bytes32,uint256,uint16)") => {
6060
Self::remove_stake(handle, &method_input)
6161
}
62-
id if id == get_method_id("getStake(bytes32,bytes32)") => {
62+
id if id == get_method_id("getStake(bytes32,bytes32,uint16)") => {
6363
Self::get_stake(&method_input)
6464
}
6565
_ => Err(PrecompileFailure::Error {

0 commit comments

Comments
 (0)