From a00b8bb08f80caf29c762af4d02016c722aabda6 Mon Sep 17 00:00:00 2001 From: highskore Date: Thu, 28 Nov 2024 22:29:04 +0100 Subject: [PATCH] chore: fix import --- src/accounts/nexus/interfaces/INexusBootstrap.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/accounts/nexus/interfaces/INexusBootstrap.sol b/src/accounts/nexus/interfaces/INexusBootstrap.sol index 7e200925..ebbb4598 100644 --- a/src/accounts/nexus/interfaces/INexusBootstrap.sol +++ b/src/accounts/nexus/interfaces/INexusBootstrap.sol @@ -1,8 +1,8 @@ // SPDX-License-Identifier: MIT pragma solidity >=0.8.23 <0.9.0; -import { IModule as IERC7579Module } from "src/accounts/common/interfaces/IERC7579Module.sol"; -import { IERC7484 } from "src/Interfaces.sol"; +import { IModule as IERC7579Module } from "../../../accounts/common/interfaces/IERC7579Module.sol"; +import { IERC7484 } from "../../../Interfaces.sol"; struct BootstrapConfig { address module;