errors.sol 241 B

12345678910
  1. contract errors {
  2. function do_revert(bool yes) pure public returns (int) {
  3. if (yes) {
  4. print("Going to revert");
  5. revert("Do the revert thing");
  6. } else {
  7. return 3124445;
  8. }
  9. }
  10. }