Skip to content

Commit ce8ce64

Browse files
committed
Update naming
1 parent 86f76a6 commit ce8ce64

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/callers/UniswapV2Caller.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { Weth } from "../shared/Weth.sol";
3232
/**
3333
* @title Uniswap caller that executes swaps on UniswapV2-like pools
3434
*/
35-
contract UniswapCaller is ICaller, TokensHandler, Weth {
35+
contract UniswapV2Caller is ICaller, TokensHandler, Weth {
3636
address internal constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
3737

3838
/**

scripts/3_deploy_uniswap_v2_caller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ try {
1010
console.log(`Working with chainId ${chainId}`);
1111

1212
// We get the contract to deploy
13-
const Contract = await ethers.getContractFactory('UniswapCaller');
13+
const Contract = await ethers.getContractFactory('UniswapV2Caller');
1414
const contract = await Contract.deploy(deploymentAddresses.weth[chainId]);
1515

16-
console.log(`${'UniswapCaller'} deployed to: ${contract.address}`);
16+
console.log(`${'UniswapV2Caller'} deployed to: ${contract.address}`);
1717

1818
return contract.address;
1919
})();

0 commit comments

Comments
 (0)