Skip to content

Commit

Permalink
hack: hardcode gastip for now as its not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
darkobas2 committed May 10, 2023
1 parent cb9b3a1 commit 292cc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transaction/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ func (t *transactionService) suggestedFeeAndTip(ctx context.Context, gasPrice *b
gasPrice = new(big.Int).Div(new(big.Int).Mul(big.NewInt(int64(boostPercent)+100), gasPrice), big.NewInt(100))
}

gasTipCap, err := t.backend.SuggestGasTipCap(ctx)
gasTipCap, err := new(big.Int).SetUint64(2999999993), nil
if err != nil {
return nil, nil, err
}
Expand Down

0 comments on commit 292cc16

Please sign in to comment.