Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZumZoom committed Nov 19, 2024
1 parent ebd6934 commit fec2379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/extensions/AmountGetterWithFee.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ contract AmountGetterWithFee is AmountGetterBase {
uint256 takingAmount,
uint256 remainingMakingAmount,
bytes calldata extraData
) internal view override returns (uint256) {
) internal view virtual override returns (uint256) {
unchecked {
(, uint256 integratorFee, uint256 resolverFee, bytes calldata tail) = _parseFeeData(extraData, taker, _isWhitelistedGetterImpl);
return Math.mulDiv(
Expand All @@ -46,7 +46,7 @@ contract AmountGetterWithFee is AmountGetterBase {
uint256 makingAmount,
uint256 remainingMakingAmount,
bytes calldata extraData
) internal view override returns (uint256) {
) internal view virtual override returns (uint256) {
unchecked {
(, uint256 integratorFee, uint256 resolverFee, bytes calldata tail) = _parseFeeData(extraData, taker, _isWhitelistedGetterImpl);
return Math.mulDiv(
Expand Down

0 comments on commit fec2379

Please sign in to comment.