Commit 7b40bd20 authored by Maurelian's avatar Maurelian

feat(ctb): move DelayedVetoable to L1 dir

parent 574e0b8c
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
// TODO(maurelian): remove this when the contract is complete
import { console } from "forge-std/console.sol";
contract DelayedVetoable {
/// @notice Error for when attempting to forward too early.
error ForwardingEarly();
......
......@@ -2,7 +2,7 @@
pragma solidity 0.8.15;
import { CommonTest, Reverter } from "./CommonTest.t.sol";
import { DelayedVetoable } from "../src/universal/DelayedVetoable.sol";
import { DelayedVetoable } from "../src/L1/DelayedVetoable.sol";
contract DelayedVetoable_Init is CommonTest {
error Unauthorized(address expected, address actual);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment