From 4aa929ff167cdb1c30b34933d3d7deee9066de3b Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 29 Nov 2022 05:36:39 +0100 Subject: [PATCH] types.go: Add ActionTrace.TxID field. --- types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/types.go b/types.go index f793e57..c39b2a5 100644 --- a/types.go +++ b/types.go @@ -5,6 +5,7 @@ import ( ) type ActionTrace struct { + TxID eos.Checksum256 `json:"tx_id"` Receiver eos.Name `json:"receiver"` Contract eos.AccountName `json:"contract"` Action eos.ActionName `json:"action"`