From 91f8446f2544fded5e6f9a3470ad5df3e2964ebe Mon Sep 17 00:00:00 2001 From: TuDo1403 Date: Fri, 23 Aug 2024 00:11:49 +0700 Subject: [PATCH] script: fix ci remapping --- script/PostChecker.sol | 2 +- .../BridgeManager.post_check.tree | 0 .../PostCheck_BridgeManager.s.sol | 8 ++++---- .../PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol | 0 ...stCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol | 0 .../proposal/PostCheck_BridgeManager_Proposal.s.sol | 0 .../quorum/PostCheck_BridgeManager_Quorum.s.sol | 0 7 files changed, 5 insertions(+), 5 deletions(-) rename script/post-check/{bridge-manager => manager}/BridgeManager.post_check.tree (100%) rename script/post-check/{bridge-manager => manager}/PostCheck_BridgeManager.s.sol (60%) rename script/post-check/{bridge-manager => manager}/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol (100%) rename script/post-check/{bridge-manager => manager}/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol (100%) rename script/post-check/{bridge-manager => manager}/proposal/PostCheck_BridgeManager_Proposal.s.sol (100%) rename script/post-check/{bridge-manager => manager}/quorum/PostCheck_BridgeManager_Quorum.s.sol (100%) diff --git a/script/PostChecker.sol b/script/PostChecker.sol index e3639ffb..71c9d3e8 100644 --- a/script/PostChecker.sol +++ b/script/PostChecker.sol @@ -8,7 +8,7 @@ import { TContract, Contract } from "script/utils/Contract.sol"; import { Network } from "script/utils/Network.sol"; import { TNetwork, DefaultNetwork } from "@fdk/utils/DefaultNetwork.sol"; import { LibCompanionNetwork } from "script/shared/libraries/LibCompanionNetwork.sol"; -import { PostCheck_BridgeManager } from "./post-check/bridge-manager/PostCheck_BridgeManager.s.sol"; +import { PostCheck_BridgeManager } from "./post-check/manager/PostCheck_BridgeManager.s.sol"; import { PostCheck_Gateway } from "./post-check/gateway/PostCheck_Gateway.s.sol"; import { Migration } from "./Migration.s.sol"; import { ScriptExtended } from "@fdk/extensions/ScriptExtended.s.sol"; diff --git a/script/post-check/bridge-manager/BridgeManager.post_check.tree b/script/post-check/manager/BridgeManager.post_check.tree similarity index 100% rename from script/post-check/bridge-manager/BridgeManager.post_check.tree rename to script/post-check/manager/BridgeManager.post_check.tree diff --git a/script/post-check/bridge-manager/PostCheck_BridgeManager.s.sol b/script/post-check/manager/PostCheck_BridgeManager.s.sol similarity index 60% rename from script/post-check/bridge-manager/PostCheck_BridgeManager.s.sol rename to script/post-check/manager/PostCheck_BridgeManager.s.sol index 09d131a0..ba953ae9 100644 --- a/script/post-check/bridge-manager/PostCheck_BridgeManager.s.sol +++ b/script/post-check/manager/PostCheck_BridgeManager.s.sol @@ -1,10 +1,10 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; -import { PostCheck_BridgeManager_CRUD_AddBridgeOperators } from "script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_AddBridgeOperators.s.sol"; -import { PostCheck_BridgeManager_CRUD_RemoveBridgeOperators } from "script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_RemoveBridgeOperators.s.sol"; -import { PostCheck_BridgeManager_Proposal } from "script/post-check/bridge-manager/proposal/PostCheck_BridgeManager_Proposal.s.sol"; -import { PostCheck_BridgeManager_Quorum } from "script/post-check/bridge-manager/quorum/PostCheck_BridgeManager_Quorum.s.sol"; +import { PostCheck_BridgeManager_CRUD_AddBridgeOperators } from "./crud/PostCheck_BridgeManager_CRUD_AddBridgeOperators.s.sol"; +import { PostCheck_BridgeManager_CRUD_RemoveBridgeOperators } from "./crud/PostCheck_BridgeManager_CRUD_RemoveBridgeOperators.s.sol"; +import { PostCheck_BridgeManager_Proposal } from "./proposal/PostCheck_BridgeManager_Proposal.s.sol"; +import { PostCheck_BridgeManager_Quorum } from "./quorum/PostCheck_BridgeManager_Quorum.s.sol"; abstract contract PostCheck_BridgeManager is PostCheck_BridgeManager_Quorum, diff --git a/script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol b/script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol similarity index 100% rename from script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol rename to script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_addBridgeOperators.s.sol diff --git a/script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol b/script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol similarity index 100% rename from script/post-check/bridge-manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol rename to script/post-check/manager/crud/PostCheck_BridgeManager_CRUD_removeBridgeOperators.s.sol diff --git a/script/post-check/bridge-manager/proposal/PostCheck_BridgeManager_Proposal.s.sol b/script/post-check/manager/proposal/PostCheck_BridgeManager_Proposal.s.sol similarity index 100% rename from script/post-check/bridge-manager/proposal/PostCheck_BridgeManager_Proposal.s.sol rename to script/post-check/manager/proposal/PostCheck_BridgeManager_Proposal.s.sol diff --git a/script/post-check/bridge-manager/quorum/PostCheck_BridgeManager_Quorum.s.sol b/script/post-check/manager/quorum/PostCheck_BridgeManager_Quorum.s.sol similarity index 100% rename from script/post-check/bridge-manager/quorum/PostCheck_BridgeManager_Quorum.s.sol rename to script/post-check/manager/quorum/PostCheck_BridgeManager_Quorum.s.sol