From cfdbeb8a9b2e4bbc94ed3b5c2c7e694966b2b810 Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Thu, 22 Mar 2018 14:07:14 +0100 Subject: [PATCH] Remove unnecessary fields from bchain.ScriptPubKey struct --- bchain/types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bchain/types.go b/bchain/types.go index dfe82245..ef0f6ddc 100644 --- a/bchain/types.go +++ b/bchain/types.go @@ -16,9 +16,9 @@ type Vin struct { } type ScriptPubKey struct { - Asm string `json:"asm"` - Hex string `json:"hex,omitempty"` - Type string `json:"type"` + // Asm string `json:"asm"` + Hex string `json:"hex,omitempty"` + // Type string `json:"type"` Addresses []string `json:"addresses,omitempty"` }