Skip to content

Instantly share code, notes, and snippets.

@bertil291utn
Last active September 3, 2022 18:37
Show Gist options
  • Save bertil291utn/539c9853f927d04481c47d44ddbed184 to your computer and use it in GitHub Desktop.
Save bertil291utn/539c9853f927d04481c47d44ddbed184 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity 0.8.7;
//rinkeby 0x2E772a6488A1592e6eB9d84CfBb7417AF6a039fd
contract ExampleRevert{
uint256 private init;
function release_r()public view{
require(init>100,"Revert error message from SC");
}
function release_w()public{
require(init>100,"Revert error message from SC");
init=1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment