1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

api/message/types.go: Adding FirstReceiver to ActionTrace

This commit is contained in:
Henrik Hautakoski 2024-02-29 14:41:56 +01:00
parent 79d2496185
commit 700d7d0168

View file

@ -64,8 +64,10 @@ type ActionTrace struct {
// Contract account.
Contract string `json:"contract" msgpack:"contract"`
Receiver string `json:"receiver" msgpack:"receiver"`
Data interface{} `json:"data" msgpack:"data"`
Receiver string `json:"receiver" msgpack:"receiver"`
FirstReceiver bool `json:"first_receiver" msgpack:"first_receiver"`
Data interface{} `json:"data" msgpack:"data"`
Authorization []PermissionLevel `json:"authorization" msgpack:"authorization"`