Skip to content

Commit

Permalink
feat: add validatePool to NormalStrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlak committed Dec 4, 2023
1 parent 8909fe2 commit c41b120
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions contracts/strategies/NormalStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ contract NormalStrategy is INormalStrategy {
return true;
}

error CannotUpdatePool();

/// @inheritdoc IStrategy
function updatePool(uint64, bytes memory) external {
revert CannotUpdatePool();
}

/// @inheritdoc IStrategy
function validateSwap(
uint64 poolId,
Expand Down

0 comments on commit c41b120

Please sign in to comment.