mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
F
This commit is contained in:
parent
68af999c35
commit
c2fb703b76
1 changed files with 2 additions and 2 deletions
|
|
@ -1350,10 +1350,10 @@ func (s *BundleAPI) CallBundle(ctx context.Context, args CallBundleArgs) (map[st
|
||||||
|
|
||||||
var totalGasUsed uint64
|
var totalGasUsed uint64
|
||||||
gasFees := new(big.Int)
|
gasFees := new(big.Int)
|
||||||
uint64MaxValue := uint64(math.MaxUint64)
|
|
||||||
for i, tx := range args.Transactions {
|
for i, tx := range args.Transactions {
|
||||||
fmt.Println("tx", tx)
|
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 {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue