From 87dc228ab8f90e5669883e59c12e465354652d3b Mon Sep 17 00:00:00 2001 From: audsssy Date: Tue, 7 Nov 2023 10:49:56 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=A2=20nits?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/KaliBerger.sol | 6 +++--- src/Storage.sol | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/KaliBerger.sol b/src/KaliBerger.sol index 322e28b..80d255c 100644 --- a/src/KaliBerger.sol +++ b/src/KaliBerger.sol @@ -1,9 +1,9 @@ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.4; -import {LibString} from "../lib/solbase/src/utils/LibString.sol"; -import {IERC721} from "../lib/forge-std/src/interfaces/IERC721.sol"; -import {IERC20} from "../lib/forge-std/src/interfaces/IERC20.sol"; +import {LibString} from "solbase/utils/LibString.sol"; +import {IERC721} from "forge-std/interfaces/IERC721.sol"; +import {IERC20} from "forge-std/interfaces/IERC20.sol"; import {IStorage} from "./interface/IStorage.sol"; import {Storage} from "./Storage.sol"; diff --git a/src/Storage.sol b/src/Storage.sol index ed59569..b4a3723 100644 --- a/src/Storage.sol +++ b/src/Storage.sol @@ -1,9 +1,6 @@ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.4; -// import {SafeMulticallable} from "solbase/utils/SafeMulticallable.sol"; -import {IStorage} from "src/interface/IStorage.sol"; - /// @notice An extensible DAO-managed storage /// @author audsssy.eth /// credit: inspired by RocketPool (https://github.com/rocket-pool/rocketpool/blob/6a9dbfd85772900bb192aabeb0c9b8d9f6e019d1/contracts/contract/RocketStorage.sol)