Skip to content

Commit

Permalink
typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkushinDaniil authored and kirugan committed Aug 2, 2024
1 parent bb9b518 commit d33c03d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/trace.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (invocation *FunctionInvocation) allEvents() []OrderedEvent {
func (invocation *FunctionInvocation) allMessages() []OrderedL2toL1Message {
messages := make([]OrderedL2toL1Message, 0)
for i := range invocation.Calls {
messages = append(messages, invocation.Calls[i].Messages...)
messages = append(messages, invocation.Calls[i].allMessages()...)
}
return append(messages, invocation.Messages...)
}
Expand Down

0 comments on commit d33c03d

Please sign in to comment.