Skip to content

Commit 1ac71e0

Browse files
committed
nits
1 parent e477d5c commit 1ac71e0

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

contracts/src/MintableERC20.sol

Lines changed: 0 additions & 12 deletions
This file was deleted.

contracts/src/contests/utils/MintableBurnableERC20.sol

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity 0.8.25;
33

4-
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
5-
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
4+
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
5+
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
66

77
contract MintableBurnableERC20 is ERC20, Ownable {
8+
89
constructor(string memory _name, string memory _symbol) Ownable() ERC20(_name, _symbol) {}
910

1011
function mint(address recipient, uint256 value) external onlyOwner {

contracts/test/ERC20ReferenceUniswapv4.t.sol renamed to contracts/test/ERC20ReferenceUniswapV4.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ contract ERC20ReferenceUniswapV4Test is Test, ERC20ReferenceTest, UniswapFixture
3838
PoolKey poolKey;
3939
PoolId poolId;
4040

41-
// Chain A (Base), Chain B (OPM)
41+
// Chain A (Remote), Chain B (Home)
4242
constructor() ERC20ReferenceTest() {}
4343

4444
function spender() public view override returns (address) {

0 commit comments

Comments
 (0)