mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-02-05 20:13:26 +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);
|
||
|
}
|
||
|
}
|