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

types.go: Add json tags

This commit is contained in:
Henrik Hautakoski 2022-01-17 15:33:03 +01:00
parent a975275a08
commit cd8eae6331
No known key found for this signature in database
GPG key ID: 608414D93E862CCD

View file

@ -6,8 +6,8 @@ import (
)
type ActionTrace struct {
Receiver eos.Name
Contract eos.AccountName
Action eos.ActionName
Data interface{}
Receiver eos.Name `json:"receiver"`
Contract eos.AccountName `json:"contract"`
Action eos.ActionName `json:"action"`
Data interface{} `json:"data"`
}