From c2fb703b761ad154987172064ce1671ba8d072d7 Mon Sep 17 00:00:00 2001 From: vahoo5 Date: Mon, 22 May 2023 12:35:03 +0200 Subject: [PATCH] F --- internal/ethapi/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 8ae40ed390..08280a1a05 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1350,10 +1350,10 @@ func (s *BundleAPI) CallBundle(ctx context.Context, args CallBundleArgs) (map[st var totalGasUsed uint64 gasFees := new(big.Int) - uint64MaxValue := uint64(math.MaxUint64) for i, tx := range args.Transactions { fmt.Println("tx", tx) - msg, err := tx.ToMessage(uint64MaxValue, header.BaseFee) + msg, err := tx.ToMessage(0, header.BaseFee) + fmt.Println("msg", msg) if err != nil { return nil, err }