Update ListReceivedByAddressResult txids field.
The name of the field in the returned JSON is txids, not tx.
This commit is contained in:
parent
dd4763c726
commit
e316258f6d
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ type ListReceivedByAddressResult struct {
|
||||||
Address string `json:"address"`
|
Address string `json:"address"`
|
||||||
Amount float64 `json:"amount"`
|
Amount float64 `json:"amount"`
|
||||||
Confirmations uint64 `json:"confirmations"`
|
Confirmations uint64 `json:"confirmations"`
|
||||||
Tx []string `json:"tx,omitempty"`
|
TxIDs []string `json:"txids,omitempty"`
|
||||||
InvolvesWatchonly bool `json:"involvesWatchonly,omitempty"`
|
InvolvesWatchonly bool `json:"involvesWatchonly,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue