Skip to content

Commit 57d4f87

Browse files
committed
update natspec and script
1 parent adf2588 commit 57d4f87

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
@@ -804,7 +804,7 @@ contract CoreAndPeriphery is BatchBuilder, SafeMultisendBuilder {
804804
console.log("+ Deploying Swapper...");
805805
Swap deployer = new Swap();
806806
(peripheryAddresses.swapper, peripheryAddresses.swapVerifier) =
807-
deployer.deploy(coreAddresses.evc, input.permit2, input.uniswapV2Router, input.uniswapV3Router);
807+
deployer.deploy(coreAddresses.evc, coreAddresses.permit2, input.uniswapV2Router, input.uniswapV3Router);
808808
} else {
809809
console.log("- At least one of the Swapper contracts already deployed. Skipping...");
810810
}

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)