Update ListReceivedByAddressResult txids field.

The name of the field in the returned JSON is txids, not tx.
This commit is contained in:
Dave Collins 2014-10-26 13:22:39 -05:00
parent dd4763c726
commit e316258f6d

View file

@ -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"`
}