From 5a368916b670ffe569e3034ead37c84b67961442 Mon Sep 17 00:00:00 2001 From: chaosBreaking Date: Sun, 8 Sep 2019 23:21:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=B2=BE=E5=BA=A6=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/deposit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/deposit.js b/src/common/deposit.js index 4e545da..c464e70 100644 --- a/src/common/deposit.js +++ b/src/common/deposit.js @@ -14,7 +14,7 @@ const parseUsdtTx = txList => { if (!txList || !Array.isArray(txList)) return []; return txList.map(tx => { return { - amount: (+tx.value) / 10e6, + amount: (+tx.value) / 1e6, hash: tx.hash, blockNumber: tx.blockNumber };