Skip to content

Commit

Permalink
fix gas prices
Browse files Browse the repository at this point in the history
  • Loading branch information
JSHan94 committed Dec 15, 2023
1 parent 81b56d2 commit 42d3440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bots/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const config = {
l2lcd: new LCDClient(
L2_LCD_URI ? L2_LCD_URI.split(',')[0] : 'http://localhost:1317',
{
gasPrices: `0.15${L2_DENOM || 'umin'}`,
gasPrices: `0${L2_DENOM || 'umin'}`,
gasAdjustment: '2'
}
),
Expand Down
2 changes: 1 addition & 1 deletion bots/src/lib/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class TxWallet extends Wallet {
denom
);

if (balance.amount && parseInt(balance.amount) < 100_000_000) {
if (balance.amount && parseInt(balance.amount) < 10_000_000) {
await notifySlack(
buildNotEnoughBalanceNotification(this, parseInt(balance.amount), denom)
);
Expand Down

0 comments on commit 42d3440

Please sign in to comment.