From e316258f6de796341e89f51a51986953982690c4 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sun, 26 Oct 2014 13:22:39 -0500 Subject: [PATCH] Update ListReceivedByAddressResult txids field. The name of the field in the returned JSON is txids, not tx. --- jsonresults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonresults.go b/jsonresults.go index 7ee0704ad..472cab49b 100644 --- a/jsonresults.go +++ b/jsonresults.go @@ -361,7 +361,7 @@ type ListReceivedByAddressResult struct { Address string `json:"address"` Amount float64 `json:"amount"` Confirmations uint64 `json:"confirmations"` - Tx []string `json:"tx,omitempty"` + TxIDs []string `json:"txids,omitempty"` InvolvesWatchonly bool `json:"involvesWatchonly,omitempty"` }