Skip to content

Commit

Permalink
Merge pull request #262 from hyperledger-labs/remove-unused-library
Browse files Browse the repository at this point in the history
ics20: Remove unused `Address` library

Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele authored May 13, 2024
2 parents c6619ef + 4dd89cf commit ba80723
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions contracts/apps/20-transfer/ICS20Bank.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ pragma solidity ^0.8.20;
import {Context} from "@openzeppelin/contracts/utils/Context.sol";
import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {ICS20Lib} from "./ICS20Lib.sol";
import {IICS20Bank} from "./IICS20Bank.sol";
import {IICS20Errors} from "./IICS20Errors.sol";

contract ICS20Bank is Context, AccessControl, IICS20Bank, IICS20Errors {
using Address for address;

bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR_ROLE");

Expand Down

0 comments on commit ba80723

Please sign in to comment.