diff --git a/script/Create3.sol b/script/Create3.sol index 029b06d..048820e 100644 --- a/script/Create3.sol +++ b/script/Create3.sol @@ -19,4 +19,4 @@ contract Create3 is Script { ); return factory.deploy(salt, bytes.concat(creationCode, abiEncodedArgs)); } -} \ No newline at end of file +} diff --git a/script/TokenFlow.s.sol b/script/TokenFlow.s.sol index 40a6ab7..03bd5e6 100644 --- a/script/TokenFlow.s.sol +++ b/script/TokenFlow.s.sol @@ -10,7 +10,6 @@ contract TokenFlowScript is Create3 { function setUp() public {} - function run() public { bytes memory creationCode = type(TokenFlow).creationCode; diff --git a/test/mocks/MockFlowScope.sol b/test/mocks/MockFlowScope.sol index 74fc939..f7b4fb9 100644 --- a/test/mocks/MockFlowScope.sol +++ b/test/mocks/MockFlowScope.sol @@ -80,7 +80,6 @@ contract MockFlowScope is IFlowScope { address, /* payer */ bytes calldata /* data */ ) external { - // Execute all instructions for (uint256 i = 0; i < instructionTypes.length; i++) { InstructionType iType = instructionTypes[i];