Skip to content

Commit 5160f86

Browse files
committed
update natspec and script
1 parent c14b303 commit 5160f86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/50_CoreAndPeriphery.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ contract CoreAndPeriphery is BatchBuilder, SafeMultisendBuilder {
811811
console.log("+ Deploying Swapper...");
812812
Swap deployer = new Swap();
813813
(peripheryAddresses.swapper, peripheryAddresses.swapVerifier) =
814-
deployer.deploy(coreAddresses.evc, input.permit2, input.uniswapV2Router, input.uniswapV3Router);
814+
deployer.deploy(coreAddresses.evc, coreAddresses.permit2, input.uniswapV2Router, input.uniswapV3Router);
815815
} else {
816816
console.log("- At least one of the Swapper contracts already deployed. Skipping...");
817817
}

src/Swaps/SwapVerifier.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {TransferFromSender} from "./TransferFromSender.sol";
88
/// @title SwapVerifier
99
/// @custom:security-contact [email protected]
1010
/// @author Euler Labs (https://www.eulerlabs.com/)
11-
/// @notice Simple contract used to verify post swap conditions
11+
/// @notice Simple contract used to verify post swap conditions. Includes TransferFromSender helper for gas savings.
1212
/// @dev This contract is the only trusted code in the EVK swap periphery
1313
contract SwapVerifier is TransferFromSender {
1414
error SwapVerifier_skimMin();

0 commit comments

Comments
 (0)