From 82e79619a5fee4c841f1309b9bfad1263e005d84 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 21 May 2014 16:08:19 -0500 Subject: [PATCH] Add missing redeemScript to ListUnspentResult. ok @jcvernaleo --- jsonresults.go | 1 + 1 file changed, 1 insertion(+) diff --git a/jsonresults.go b/jsonresults.go index 3cca63ee..08b9df4a 100644 --- a/jsonresults.go +++ b/jsonresults.go @@ -331,6 +331,7 @@ type ListUnspentResult struct { Address string `json:"address"` Account string `json:"account"` ScriptPubKey string `json:"scriptPubKey"` + RedeemScript string `json:"redeemScript,omitempty"` Amount float64 `json:"amount"` Confirmations int64 `json:"confirmations"` }