From 5a5f7e22670a934e374163c2bf4b6a5be02be016 Mon Sep 17 00:00:00 2001 From: gztensor <166415444+gztensor@users.noreply.github.com> Date: Tue, 14 Jan 2025 07:50:44 -0800 Subject: [PATCH] Update runtime/src/precompiles/solidity/staking.sol Co-authored-by: Cameron Fairchild --- runtime/src/precompiles/solidity/staking.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/precompiles/solidity/staking.sol b/runtime/src/precompiles/solidity/staking.sol index e0a867638..f252727ca 100644 --- a/runtime/src/precompiles/solidity/staking.sol +++ b/runtime/src/precompiles/solidity/staking.sol @@ -53,5 +53,5 @@ interface IStaking { * @param coldkey The coldkey public key (32 bytes). * @return The current stake amount in uint64 format. */ - function getStake(bytes32 hotkey, bytes32 coldkey) external view returns (uint64); + function getStake(bytes32 hotkey, bytes32 coldkey, uint16 netuid) external view returns (uint64); }