chore: rename dispatcher methods for clarity

This commit is contained in:
TAMARA LIPOWSKI
2025-04-25 21:07:48 -04:00
parent 32c2d52971
commit 8b55d90608
3 changed files with 8 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ contract DispatcherExposed is Dispatcher {
uint256 amount,
bytes calldata data
) external returns (uint256 calculatedAmount) {
return _callExecutor(executor, amount, data);
return _callSwapOnExecutor(executor, amount, data);
}
function exposedSetExecutor(address target) external {