mirror of
https://github.com/placeholder-soft/tokenbound.git
synced 2026-01-12 22:44:58 +08:00
12 lines
204 B
Solidity
12 lines
204 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity ^0.8.13;
|
|
|
|
contract MockReverter {
|
|
error MockError();
|
|
|
|
function fail() external pure returns (uint256) {
|
|
revert MockError();
|
|
}
|
|
}
|
|
|