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

@@ -53,7 +53,7 @@ contract Dispatcher {
* protocol-specific data required by the executor.
*/
// slither-disable-next-line delegatecall-loop,assembly
function _callExecutor(
function _callSwapOnExecutor(
address executor,
uint256 amount,
bytes calldata data
@@ -85,7 +85,7 @@ contract Dispatcher {
}
// slither-disable-next-line assembly
function _handleCallback(bytes calldata data)
function _callHandleCallbackOnExecutor(bytes calldata data)
internal
returns (bytes memory)
{