From 078259ec0f8b0537d802e81b4b7a1ab934ffca46 Mon Sep 17 00:00:00 2001 From: julian Date: Mon, 3 Oct 2022 07:59:59 -0600 Subject: [PATCH] cn trade hash fix --- lib/services/exchange/change_now/change_now_exchange.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/services/exchange/change_now/change_now_exchange.dart b/lib/services/exchange/change_now/change_now_exchange.dart index ce5182e44..5ff68de4a 100644 --- a/lib/services/exchange/change_now/change_now_exchange.dart +++ b/lib/services/exchange/change_now/change_now_exchange.dart @@ -160,13 +160,13 @@ class ChangeNowExchange extends Exchange { payInAddress: t.payinAddress, payInNetwork: "", payInExtraId: t.payinExtraId, - payInTxid: "", + payInTxid: t.payinHash, payOutCurrency: t.toCurrency, payOutAmount: t.expectedReceiveAmountDecimal, payOutAddress: t.payoutAddress, payOutNetwork: "", payOutExtraId: t.payoutExtraId, - payOutTxid: "", + payOutTxid: t.payoutHash, refundAddress: t.refundAddress, refundExtraId: t.refundExtraId, status: t.status.name,