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:
parent
68c21c8ed8
commit
7637b6e16b
2 changed files with 12 additions and 7 deletions
|
|
@ -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"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue