• Mark Tyneway's avatar
    contracts-bedrock: fix semver tag · 101da16c
    Mark Tyneway authored
    The docstring for `L1FeeVault` was not bumped
    properly. This commit bumps the commit message.
    We should have automation around this kind of thing
    to prevent it from happening in the future.
    101da16c
L1FeeVault.sol 606 Bytes
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;

import { Semver } from "../universal/Semver.sol";
import { FeeVault } from "../universal/FeeVault.sol";

/**
 * @custom:proxied
 * @custom:predeploy 0x420000000000000000000000000000000000001A
 * @title L1FeeVault
 * @notice The L1FeeVault accumulates the L1 portion of the transaction fees.
 */
contract L1FeeVault is FeeVault, Semver {
    /**
     * @custom:semver 1.1.0
     *
     * @param _recipient Address that will receive the accumulated fees.
     */
    constructor(address _recipient) FeeVault(_recipient, 10 ether) Semver(1, 1, 0) {}
}