mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-10 17:43:06 +00:00
11 lines
214 B
Solidity
11 lines
214 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract TestHelpers {
|
|
|
|
function doRevert(string calldata reason) public pure {
|
|
// Revert every tx with given reason
|
|
require(false, reason);
|
|
}
|
|
}
|