timestamp

This commit is contained in:
chaosBreaking
2019-10-07 17:43:59 +08:00
parent a5195c8f2b
commit 8939377ecf
4 changed files with 2 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ const getUSDTTxList = async address => {
const res = await ERC20.getActions(address, USDTAddr, startBlock).catch(err => {
if (err) return [];
});
mylog.info(res, res.filter(tx => tx.to === address));
return res.filter(tx => tx.to === address); //只取转入到本地址的
};