From ccf057352347970a8d0dacfb80c96b4df6873401 Mon Sep 17 00:00:00 2001 From: Minh Doan Date: Thu, 21 Mar 2019 22:59:47 -0700 Subject: [PATCH] add Data field for Transaction in explorer --- api/service/explorer/structs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/service/explorer/structs.go b/api/service/explorer/structs.go index 8fc344e16..9979ce16c 100644 --- a/api/service/explorer/structs.go +++ b/api/service/explorer/structs.go @@ -34,6 +34,7 @@ type Transaction struct { To string `json:"to"` Value *big.Int `json:"value"` Bytes string `json:"bytes"` + Data string `json:"data"` } // Block ...