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:
Dave Collins 2014-10-26 13:27:39 -05:00
parent 2ea0ef66ea
commit ccb2b1e16d

View file

@ -2150,7 +2150,7 @@ func ListReceivedByAddress(w *Wallet, chainSvr *chain.Client, icmd btcjson.Cmd)
Address: address,
Amount: addrData.amount.ToUnit(btcutil.AmountBTC),
Confirmations: uint64(addrData.confirmations),
Tx: addrData.tx,
TxIDs: addrData.tx,
}
idx++
}