1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-08-26 20:18:13 +02:00

transport/message/types.go: Rename Action field to Name in ActionTrace struct

This commit is contained in:
Henrik Hautakoski 2023-03-07 18:41:41 +01:00
parent 68c21c8ed8
commit 7637b6e16b
2 changed files with 12 additions and 7 deletions

View file

@ -7,10 +7,15 @@ type HearthBeat struct {
}
type ActionTrace struct {
TxID string `json:"tx_id"`
TxID string `json:"tx_id"`
// Action name
Name string `json:"name"`
// Contract account.
Contract string `json:"contract"`
Receiver string `json:"receiver"`
Contract string `json:"contract"`
Action string `json:"action"`
Data interface{} `json:"data"`
HexData string `json:"hex_data"`
}