fix utxo list response

This commit is contained in:
Niko Storni 2020-04-01 04:23:59 +02:00
parent 9a9be92d27
commit e8b93e3bb1

View file

@ -486,9 +486,12 @@ type UTXOListResponse struct {
Amount string `json:"amount"`
Confirmations int `json:"confirmations"`
Height int `json:"height"`
IsChange bool `json:"is_change"`
IsMine bool `json:"is_mine"`
IsInternalTransfer bool `json:"is_internal_transfer"`
IsMyInput bool `json:"is_internal_transfer"`
IsMyOutput bool `json:"is_my_output"`
IsSpent bool `json:"is_spent"`
Nout int `json:"nout"`
Timestamp int64 `json:"timestamp"`
Txid string `json:"txid"`
Type string `json:"type"`
} `json:"items"`