Add signing channel to transaction (transaction_show)
This commit is contained in:
parent
3027fb9b98
commit
6516df1418
2 changed files with 2 additions and 1 deletions
|
@ -793,7 +793,7 @@ func TestClient_WalletRemoveWalletAdd(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestClient_TransactionSummary(t *testing.T) {
|
||||
d := NewClient("")
|
||||
d := NewClient("https://api.lbry.tv/api/v1/proxy")
|
||||
r, err := d.TransactionShow("d104a1616c6af581e2046819de678f370d624e97cf176f95acaec4b183a42db6")
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
|
|
|
@ -251,6 +251,7 @@ type Transaction struct {
|
|||
NormalizedName string `json:"normalized_name"`
|
||||
Nout uint64 `json:"nout"`
|
||||
PermanentUrl string `json:"permanent_url"`
|
||||
SigningChannel *Claim `json:"signing_channel,omitempty"`
|
||||
TimeStamp uint64 `json:"time_stamp"`
|
||||
Protobuf string `json:"protobuf,omitempty"`
|
||||
Txid string `json:"txid"`
|
||||
|
|
Loading…
Reference in a new issue