Skip to content

Commit

Permalink
fix: build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 7, 2023
1 parent 43bb331 commit a09b261
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: make lint

smart-contracts:
name: smart-contracts
name: Build Smart Contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/tokens/ERC20.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;

import {ERC20 as OZ_ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol" ;
import {ERC20 as OZ_ERC20} from "@openzeppelin/token/ERC20/ERC20.sol" ;

contract ERC20 is OZ_ERC20 {
constructor() OZ_ERC20("MyToken", "MTK") {
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/tokens/ERC721.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;

import {ERC721 as OZ_ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {ERC721 as OZ_ERC721} from "@openzeppelin/token/ERC721/ERC721.sol";

contract ERC721 is OZ_ERC721 {
uint256 public currentTokenId = 0;
Expand Down

0 comments on commit a09b261

Please sign in to comment.