mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 21:53:08 +00:00
10 lines
188 B
Solidity
10 lines
188 B
Solidity
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
pragma solidity ^0.8.0;
|
||
|
|
|
||
|
|
contract TestHelpers {
|
||
|
|
|
||
|
|
function revertsWith(string calldata revertReason) public pure {
|
||
|
|
require(false, revertReason);
|
||
|
|
}
|
||
|
|
}
|