From 4ee337d1ee3fa5cda7bbec64b760e39028165a60 Mon Sep 17 00:00:00 2001 From: royvardhan Date: Mon, 27 Jan 2025 20:44:01 +0530 Subject: [PATCH] fix: ci --- foundry/src/TychoRouter.sol | 2 +- foundry/test/Constants.sol | 1 - test/TychoRouter.t.sol | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 test/TychoRouter.t.sol diff --git a/foundry/src/TychoRouter.sol b/foundry/src/TychoRouter.sol index 62d899b..da92429 100644 --- a/foundry/src/TychoRouter.sol +++ b/foundry/src/TychoRouter.sol @@ -15,7 +15,7 @@ error TychoRouter__NonContractVerifier(); contract TychoRouter is AccessControl, - SwapExecutionDispatcher, + ExecutionDispatcher, CallbackVerificationDispatcher, Pausable { diff --git a/foundry/test/Constants.sol b/foundry/test/Constants.sol index 7c2a31f..ed1b66f 100644 --- a/foundry/test/Constants.sol +++ b/foundry/test/Constants.sol @@ -12,7 +12,6 @@ contract Constants is Test { // Dummy contracts address DUMMY = makeAddr("dummy"); - address FEE_RECEIVER = makeAddr("feeReceiver"); address PAUSER = makeAddr("pauser"); address UNPAUSER = makeAddr("unpauser"); diff --git a/test/TychoRouter.t.sol b/test/TychoRouter.t.sol new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/test/TychoRouter.t.sol @@ -0,0 +1 @@ + \ No newline at end of file