This repository was archived by the owner on Mar 28, 2023. It is now read-only.
This repository was archived by the owner on Mar 28, 2023. It is now read-only.
Funding and payout transactions missing in order details for seller and buyer respectively #1802
Open
Description
There are a few problems to resolve in order details:
- 1. There is only one payment in
this.paymentAddressTransactions
array - 2. The details of the transaction are completely different for the buyer vs seller
Buyer
"paymentAddressTransactions": [
{
"txid": "c49c6871dc29325f35d8b1b646760196ebce4e74bd5dcfbc00464f85e2fd0306",
"value": 0,
"confirmations": 5207,
"height": 5281482,
"timestamp": "2019-10-17T03:33:48.032228Z",
"currency": {
"code": "TETH",
"divisibility": 18
},
"bigValue": "11452438250000000"
}
]
Seller
"paymentAddressTransactions": [
{
"txid": "0xc49c6871dc29325f35d8b1b646760196ebce4e74bd5dcfbc00464f85e2fd0306",
"value": 0,
"confirmations": 5215,
"height": 5281490,
"timestamp": "2019-10-17T03:33:50.120245Z",
"currency": {
"code": "TETH",
"divisibility": 18
},
"bigValue": "11452438250000000"
}
]
^^ I'm assuming that the Buyer's txid
is the payment going into the escrow smart contract, and the Seller's txid
is the payment out of the escrow smart contract. Ideally the Buyer and Seller should see both in the correct order.