fix claim search not returning claim values
This commit is contained in:
parent
deab868c53
commit
b1c090e28d
1 changed files with 10 additions and 8 deletions
|
@ -500,11 +500,13 @@ func (d *Client) ClaimSearch(claimName, claimID, txid *string, nout *uint) (*Cla
|
||||||
TXID *string `json:"txid,omitempty"`
|
TXID *string `json:"txid,omitempty"`
|
||||||
Nout *uint `json:"nout,omitempty"`
|
Nout *uint `json:"nout,omitempty"`
|
||||||
Name *string `json:"name,omitempty"`
|
Name *string `json:"name,omitempty"`
|
||||||
|
IncludeProtobuf bool `json:"include_protobuf"`
|
||||||
}{
|
}{
|
||||||
ClaimID: claimID,
|
ClaimID: claimID,
|
||||||
TXID: txid,
|
TXID: txid,
|
||||||
Nout: nout,
|
Nout: nout,
|
||||||
Name: claimName,
|
Name: claimName,
|
||||||
|
IncludeProtobuf: true,
|
||||||
}
|
}
|
||||||
structs.DefaultTagName = "json"
|
structs.DefaultTagName = "json"
|
||||||
return response, d.call(response, "claim_search", structs.Map(args))
|
return response, d.call(response, "claim_search", structs.Map(args))
|
||||||
|
|
Loading…
Reference in a new issue