From bef5cfa9132dba7cd39d820838175a468b07a5a9 Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Thu, 9 May 2024 14:52:04 -0400 Subject: [PATCH] Update fvm/environment/event_emitter.go --- fvm/environment/event_emitter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fvm/environment/event_emitter.go b/fvm/environment/event_emitter.go index 52a7cf2576a..c9ccc26ca6f 100644 --- a/fvm/environment/event_emitter.go +++ b/fvm/environment/event_emitter.go @@ -292,7 +292,7 @@ func (collection *EventCollection) TotalEventCounter() uint32 { // IsServiceEvent determines whether an emitted Cadence event is considered a service event for the given chain. // An event is a service event if it is defined in the `systemcontracts` package allow-list. -// Note that we have *removed* the prior constraint that service events can only be +// Note that we have *removed* the prior constraint that service events can only be // emitted in the system chunk. Now a system smart contract can emit service events // as part of any transaction. func IsServiceEvent(eventType flow.EventType, chain flow.ChainID) (bool, error) {