From f8625369299eda626ea1bab68eeb9e40ad8e04d2 Mon Sep 17 00:00:00 2001 From: David Hill Date: Fri, 9 Oct 2015 10:21:13 -0400 Subject: [PATCH] btcjson: Add errors to InfoChainResult The getinfo RPC will now include the errors attribute in the result. --- btcjson/chainsvrresults.go | 1 + 1 file changed, 1 insertion(+) diff --git a/btcjson/chainsvrresults.go b/btcjson/chainsvrresults.go index 086caeeb..6ba33d27 100644 --- a/btcjson/chainsvrresults.go +++ b/btcjson/chainsvrresults.go @@ -364,6 +364,7 @@ type InfoChainResult struct { Difficulty float64 `json:"difficulty"` TestNet bool `json:"testnet"` RelayFee float64 `json:"relayfee"` + Errors string `json:"errors"` } // LocalAddressesResult models the localaddresses data from the getnetworkinfo