Skip to content

Commit

Permalink
pacify solhint.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Jan 2, 2025
1 parent 6cd5442 commit 35e2a83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions contracts/contracts/lib/CrossMsgHelper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {Address} from "@openzeppelin/contracts/utils/Address.sol";
import {Asset} from "../structs/Subnet.sol";
import {AssetHelper} from "./AssetHelper.sol";
import {IIpcHandler} from "../../sdk/interfaces/IIpcHandler.sol";
// solhint-disable-next-line no-global-import
import "../errors/IPCErrors.sol";

/// @title Helper library for manipulating IpcEnvelope-related structs
Expand Down
3 changes: 2 additions & 1 deletion contracts/contracts/lib/LibGateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ import {SubnetID, Subnet, AssetKind, Asset} from "../structs/Subnet.sol";
import {SubnetActorGetterFacet} from "../subnet/SubnetActorGetterFacet.sol";
import {CallMsg, IpcMsgKind, IpcEnvelope, OutcomeType, BottomUpMsgBatch, BottomUpMsgBatch, BottomUpCheckpoint, ParentFinality} from "../structs/CrossNet.sol";
import {Membership} from "../structs/Subnet.sol";
import "../errors/IPCErrors.sol";
import {CrossMsgHelper} from "../lib/CrossMsgHelper.sol";
import {FilAddress} from "fevmate/contracts/utils/FilAddress.sol";
import {SubnetIDHelper} from "../lib/SubnetIDHelper.sol";
import {AssetHelper} from "../lib/AssetHelper.sol";
import {ISubnetActor} from "../interfaces/ISubnetActor.sol";
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
// solhint-disable-next-line no-global-import
import "../errors/IPCErrors.sol";

library LibGateway {
using SubnetIDHelper for SubnetID;
Expand Down

0 comments on commit 35e2a83

Please sign in to comment.