updated ListReceivedByAddressResult for Tx ids

also added InvolvesWatchonly while here
This commit is contained in:
Javed Khan 2014-09-04 20:55:34 +05:30
parent 3d76571621
commit d6a4b89601

View file

@ -358,10 +358,12 @@ type ListReceivedByAccountResult struct {
// ListReceivedByAddressResult models the data from the listreceivedbyaddress
// command.
type ListReceivedByAddressResult struct {
Account string `json:"account"`
Address string `json:"address"`
Amount float64 `json:"amount"`
Confirmations uint64 `json:"confirmations"`
Account string `json:"account"`
Address string `json:"address"`
Amount float64 `json:"amount"`
Confirmations uint64 `json:"confirmations"`
Tx []string `json:"tx,omitempty"`
InvolvesWatchonly bool `json:"involvesWatchonly,omitempty"`
}
// ListSinceBlockResult models the data from the listsinceblock command.