From b2b25ff6e3d7401fb0f676c722bf058a72ae9c86 Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:19:56 +0100 Subject: [PATCH] chore(OwnerToken): remove unused `CommunityOwnable` import This seems to have been a leftover. --- contracts/tokens/OwnerToken.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/tokens/OwnerToken.sol b/contracts/tokens/OwnerToken.sol index 44cc03a..3735d9a 100644 --- a/contracts/tokens/OwnerToken.sol +++ b/contracts/tokens/OwnerToken.sol @@ -2,7 +2,6 @@ pragma solidity ^0.8.17; import { BaseToken } from "./BaseToken.sol"; -import { CommunityOwnable } from "../CommunityOwnable.sol"; contract OwnerToken is BaseToken { error OwnerToken_MaxSupplyLocked();