debug_buffer_format.sol 327 B

123456789101112
  1. contract DebugBuffer {
  2. function multiple_prints() public {
  3. print("Hello!");
  4. print("I call seal_debug_message under the hood!");
  5. }
  6. function multiple_prints_then_revert() public {
  7. print("Hello!");
  8. print("I call seal_debug_message under the hood!");
  9. revert("sesa!!!");
  10. }
  11. }