Skip to content

Commit ff9a4f6

Browse files
authored
Merge branch 'main' into mw/distribute
2 parents 272183b + 898652c commit ff9a4f6

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<<<<<<< HEAD
21
# dependencies
32
/node_modules
43
/.pnp
@@ -20,6 +19,4 @@
2019
npm-debug.log*
2120
yarn-debug.log*
2221
yarn-error.log*
23-
=======
24-
./node_modules
25-
>>>>>>> c02c72a4406fdddb76c2b68e8f9c578c88b07e06
22+

contracts/MyERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.9;
33

4-
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
4+
import "../node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol";
55

66
contract MyERC20 is ERC20 {
77
constructor() ERC20("MyERC20", "ME") {}

0 commit comments

Comments
 (0)