Skip to content

Commit

Permalink
fix: Remove virtual from _claim
Browse files Browse the repository at this point in the history
  • Loading branch information
stonehengeLR committed Jul 4, 2024
1 parent 6f67949 commit e9cb33e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/BlastYield.sol
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ contract BlastYield {
* @param wethReceiver The receiver of WETH.
* @param usdbReceiver The receiver of USDB.
*/
function _claim(address wethReceiver, address usdbReceiver) internal virtual {
function _claim(address wethReceiver, address usdbReceiver) internal {
uint256 claimableWETH = IERC20Rebasing(WETH).getClaimableAmount(address(this));
if (claimableWETH != 0) {
IERC20Rebasing(WETH).claim(wethReceiver, claimableWETH);
Expand Down

0 comments on commit e9cb33e

Please sign in to comment.