fix: 精度错误
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user