10 lines
198 B
Solidity
10 lines
198 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.20;
|
|
|
|
import {Blockhash} from "../utils/Blockhash.sol";
|
|
|
|
/// @dev This mock is required for upgradeable tests to pass
|
|
contract BlockhashMock {
|
|
|
|
}
|