Remove unnecessary fields from bchain.ScriptPubKey struct

This commit is contained in:
Martin Boehm 2018-03-22 14:07:14 +01:00
parent 6a346f8f49
commit cfdbeb8a9b

View File

@ -16,9 +16,9 @@ type Vin struct {
} }
type ScriptPubKey struct { type ScriptPubKey struct {
Asm string `json:"asm"` // Asm string `json:"asm"`
Hex string `json:"hex,omitempty"` Hex string `json:"hex,omitempty"`
Type string `json:"type"` // Type string `json:"type"`
Addresses []string `json:"addresses,omitempty"` Addresses []string `json:"addresses,omitempty"`
} }