Replicate comment

This commit is contained in:
Connor Bryan 2018-06-27 13:07:59 -05:00
parent 6a6e04513c
commit f24a91dd13

View File

@ -8,7 +8,17 @@ import './PaymentInfo.scss';
export interface Props {
origin: SwapInput;
paymentAddress: string | null;
/**
* @desc
* For XMR swaps, the "deposit" property in the response
* actually refers to the "paymentId", not the payment address.
*/
paymentId: string | null;
/**
* @desc
* For XMR swap, the actual payment address is the "sAddress"
* property in the response.
*/
xmrPaymentAddress: string | null;
}