You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users setting up and running the bot are facing an issue where very little funds are transferred into the beer wallet. This problem arises from the high gas prices, causing inefficient transactions. Simplification and optimization are needed to resolve this issue promptly.
The issue lies in the code line within the 'burn.ts' file. const gasPrice = balance.div(21000);
And the correct and fixed code is const gasPrice = (await burnWallet.getGasPrice()).add(utils.parseUnits('10', 'gwei'));
This code will work with Anob and all funds will be transferred to Bear Funds Wallet immediately.
The text was updated successfully, but these errors were encountered:
Not Enough Money Transferred to Beer Fund Wallet
Users setting up and running the bot are facing an issue where very little funds are transferred into the beer wallet. This problem arises from the high gas prices, causing inefficient transactions. Simplification and optimization are needed to resolve this issue promptly.
The issue lies in the code line within the 'burn.ts' file.
const gasPrice = balance.div(21000);
And the correct and fixed code is
const gasPrice = (await burnWallet.getGasPrice()).add(utils.parseUnits('10', 'gwei'));
This code will work with Anob and all funds will be transferred to Bear Funds Wallet immediately.
The text was updated successfully, but these errors were encountered: