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"`
|
||||
Nout *uint `json:"nout,omitempty"`
|
||||
Name *string `json:"name,omitempty"`
|
||||
IncludeProtobuf bool `json:"include_protobuf"`
|
||||
}{
|
||||
ClaimID: claimID,
|
||||
TXID: txid,
|
||||
Nout: nout,
|
||||
Name: claimName,
|
||||
IncludeProtobuf: true,
|
||||
}
|
||||
structs.DefaultTagName = "json"
|
||||
return response, d.call(response, "claim_search", structs.Map(args))
|
||||
|
|
Loading…
Reference in a new issue