소스 검색

update collect_amount

Rony 2 년 전
부모
커밋
f7fdfd322a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      model/moralis_sdk.js

+ 1 - 1
model/moralis_sdk.js

@@ -567,7 +567,7 @@ async function transfers(obj, my_account_all_coins, logParams) {
         for (let index = 0; index < my_account_all_coins.transfer_arrays.length; index++) {
             var ti = my_account_all_coins.transfer_arrays[index]
                 //去掉gas费用
-                // let collect_amount = BigInt(ti.amount) - 21000 ** 18;
+            let collect_amount = BigInt(ti.amount);
             ti.amount = collect_amount.toString();
             //
             logger.tlog('ti=', ti, index)