From e982ede4a8d48cc1d01907ef28a907d887349fe1 Mon Sep 17 00:00:00 2001 From: saratnt Date: Mon, 20 May 2024 10:48:57 +0200 Subject: [PATCH] Fix --- .../account/smart_contract_resources/contracts/ForgerStakes.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/SidechainTestFramework/account/smart_contract_resources/contracts/ForgerStakes.sol b/qa/SidechainTestFramework/account/smart_contract_resources/contracts/ForgerStakes.sol index 826b18952f..d45a140256 100644 --- a/qa/SidechainTestFramework/account/smart_contract_resources/contracts/ForgerStakes.sol +++ b/qa/SidechainTestFramework/account/smart_contract_resources/contracts/ForgerStakes.sol @@ -41,5 +41,5 @@ interface ForgerStakes { function getPagedForgersStakes(int32 startIndex, int32 pageSize) external view returns (int32, StakeInfo[] memory); // disableAndMigrate can be called only after fork point 1.4 and only by the ForgerStakesV2 smart contract - function disableAndMigrate() external view returns (StakeInfo[] memory); + function disableAndMigrate() external returns (StakeInfo[] memory); }