Use consistent event definitions between examples

This commit is contained in:
Denis Davidyuk 2021-02-16 14:52:37 +03:00 committed by Hans Svensson
parent 393d7710c1
commit 10c845d3cf

View File

@ -802,8 +802,8 @@ will emit one Event of each kind in the example.
```sophia ```sophia
entrypoint emit_events() : () = entrypoint emit_events() : () =
Chain.event(TheFirstEvent(42)) Chain.event(Event1(42, 34, "foo"))
Chain.event(AnotherEvent(Contract.address, "This is not indexed")) Chain.event(Event2("This is not indexed", Contract.address))
``` ```
#### Argument order #### Argument order