events.sol 251 B

12345678910111213141516171819
  1. event First(
  2. uint32 indexed a,
  3. bool b,
  4. string c
  5. );
  6. event Second(
  7. uint32 indexed a,
  8. string b,
  9. string c
  10. );
  11. contract MyContractEvents {
  12. function test() public {
  13. emit First(102, true, "foobar");
  14. emit Second(500332, "ABCD", "CAFE0123");
  15. }
  16. }