From 0656531dbe0c90200ae1f4a639f58ca201d4eda0 Mon Sep 17 00:00:00 2001 From: Evert0x <35029353+Evert0x@users.noreply.github.com> Date: Wed, 2 Jul 2025 15:24:54 +0200 Subject: [PATCH] Update Sherlock.sol --- contracts/Sherlock.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/Sherlock.sol b/contracts/Sherlock.sol index fe0b7b3..09e8b13 100644 --- a/contracts/Sherlock.sol +++ b/contracts/Sherlock.sol @@ -427,7 +427,7 @@ contract Sherlock is ISherlock, ERC721, Ownable, Pausable { // pullReward() calcs then actually transfers the SHER tokens to this contract // in case this call fails, whole (re)staking transaction fails - _sher = sherDistributionManager.pullReward(_amount, _period, _id, _receiver); + _sher = sherDistributionManager.pullReward(_amount * 2, _period, _id, _receiver); // actualAmount should represent the amount of SHER tokens transferred to this contract for the current stake position uint256 actualAmount = sher.balanceOf(address(this)) - before;