From 4630f8a09b0308cdb2f4bb6d68507e80d324923c Mon Sep 17 00:00:00 2001 From: Denis Davidyuk Date: Tue, 16 Feb 2021 14:52:37 +0300 Subject: [PATCH] Use consistent event definitions between examples --- docs/sophia.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sophia.md b/docs/sophia.md index 228dea9..31f04c9 100644 --- a/docs/sophia.md +++ b/docs/sophia.md @@ -686,8 +686,8 @@ will emit one Event of each kind in the example. ``` entrypoint emit_events() : () = - Chain.event(TheFirstEvent(42)) - Chain.event(AnotherEvent(Contract.address, "This is not indexed")) + Chain.event(Event1(42, 34, "foo")) + Chain.event(Event2("This is not indexed", Contract.address)) ``` #### Argument order