CoinSwap: handle "receiving/received LBC"

This commit is contained in:
infiinte-persistence 2021-04-08 09:23:17 +08:00 committed by Sean Yesmunt
parent 5f3a40a420
commit 3ca0c8d204
2 changed files with 8 additions and 6 deletions

View file

@ -2,12 +2,13 @@ declare type CoinSwapInfo = {
chargeCode: string,
coins: Array<string>,
sendAddresses: { [string]: string},
sendAmounts: { [string]: number },
sendAmounts: { [string]: any },
lbcAmount: number,
status?: {
status: string,
receipt_txid: string,
lbc_txid: string,
receiptCurrency: string,
receiptTxid: string,
lbcTxid: string,
},
}

View file

@ -2,12 +2,13 @@ declare type CoinSwapInfo = {
chargeCode: string,
coins: Array<string>,
sendAddresses: { [string]: string},
sendAmounts: { [string]: number },
sendAmounts: { [string]: any },
lbcAmount: number,
status?: {
status: string,
receipt_txid: string,
lbc_txid: string,
receiptCurrency: string,
receiptTxid: string,
lbcTxid: string,
},
}