Update for recent btcjson API change.
This commit updates the Tx field of the ListReceivedByAddressResult to TxIDS to mirror the recent change btcjson.
This commit is contained in:
parent
2ea0ef66ea
commit
ccb2b1e16d
1 changed files with 1 additions and 1 deletions
|
@ -2150,7 +2150,7 @@ func ListReceivedByAddress(w *Wallet, chainSvr *chain.Client, icmd btcjson.Cmd)
|
||||||
Address: address,
|
Address: address,
|
||||||
Amount: addrData.amount.ToUnit(btcutil.AmountBTC),
|
Amount: addrData.amount.ToUnit(btcutil.AmountBTC),
|
||||||
Confirmations: uint64(addrData.confirmations),
|
Confirmations: uint64(addrData.confirmations),
|
||||||
Tx: addrData.tx,
|
TxIDs: addrData.tx,
|
||||||
}
|
}
|
||||||
idx++
|
idx++
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue