We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As the tile says, in vm/trace.go, the struct definition:
vm/trace.go
type OrderedEvent struct { Order uint64 `json:"order"` From *felt.Felt `json:"from_address,omitempty"` Keys []*felt.Felt `json:"keys"` Data []*felt.Felt `json:"data"` }
Has the fields Key and Data as pointers of felts. Ideally they are directly array of felts and all the changes directly with them are applied.
Key
Data
End result
type OrderedEvent struct { Order uint64 `json:"order"` From *felt.Felt `json:"from_address,omitempty"` Keys []felt.Felt `json:"keys"` Data []felt.Felt `json:"data"` }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As the tile says, in
vm/trace.go
, the struct definition:Has the fields
Key
andData
as pointers of felts. Ideally they are directly array of felts and all the changes directly with them are applied.End result
The text was updated successfully, but these errors were encountered: