fix(univ4): Make slither happy

--- don't change below this line ---
ENG-4222 Took 17 minutes

Took 47 seconds


Took 14 seconds
This commit is contained in:
Diana Carvalho
2025-02-14 12:01:29 +00:00
parent 4d0f5cec64
commit 8a8bc697eb
3 changed files with 16 additions and 17 deletions

View File

@@ -450,7 +450,8 @@ contract TychoRouter is
{
require(data.length >= 20, "Invalid data length");
bytes4 selector = bytes4(data[data.length - 4:]);
address executor = address(uint160(bytes20(data[data.length - 24:data.length - 4])));
address executor =
address(uint160(bytes20(data[data.length - 24:data.length - 4])));
bytes memory protocolData = data[:data.length - 24];
if (!executors[executor]) {