Skip to content

Commit

Permalink
Remove unused imports (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog authored Jan 11, 2025
1 parent f3b92d6 commit 8614696
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions src/ICertManager.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

import {Sha2Ext} from "./Sha2Ext.sol";
import {Asn1Decode, Asn1Ptr, LibAsn1Ptr} from "./Asn1Decode.sol";
import {LibBytes} from "./LibBytes.sol";

interface ICertManager {
struct VerifiedCert {
bool ca;
Expand Down
3 changes: 0 additions & 3 deletions src/NitroValidator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@ pragma solidity ^0.8.15;
import {ICertManager} from "./ICertManager.sol";
import {Sha2Ext} from "./Sha2Ext.sol";
import {CborDecode, CborElement, LibCborElement} from "./CborDecode.sol";
import {Asn1Decode} from "./Asn1Decode.sol";
import {ECDSA384} from "@solarity/libs/crypto/ECDSA384.sol";
import {ECDSA384Curve} from "./ECDSA384Curve.sol";
import {LibBytes} from "./LibBytes.sol";

import {console} from "forge-std/console.sol";

// adapted from https://github.com/marlinprotocol/NitroProver/blob/f1d368d1f172ad3a55cd2aaaa98ad6a6e7dcde9d/src/NitroProver.sol

contract NitroValidator {
Expand Down

0 comments on commit 8614696

Please sign in to comment.