Browse Source

update collect_amount

Rony 2 years ago
parent
commit
f7fdfd322a
1 changed files with 1 additions and 1 deletions
  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)