Skip to content
Open
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 contracts/Sherlock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down