Skip to content

Commit

Permalink
build: 0.8.23 compatibility (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xhiroshi authored Dec 20, 2023
1 parent a1265a5 commit 9d7403c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/enums/TokenType.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma solidity ^0.8.20;

enum TokenType {
ERC20,
Expand Down
2 changes: 1 addition & 1 deletion contracts/errors/SharedErrors.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma solidity ^0.8.20;

/**
* @notice It is returned if the amount is invalid.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ITransferManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma solidity ^0.8.20;

// Enums
import {TokenType} from "../enums/TokenType.sol";
Expand Down

0 comments on commit 9d7403c

Please sign in to comment.