internal/ethapi: pass blob hashes to gas estimation (#29085)

This commit is contained in:
maskpp 2024-02-26 18:02:18 +08:00 committed by GitHub
parent edffacca8f
commit 8bca93e82c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -156,6 +156,8 @@ func (args *TransactionArgs) setDefaults(ctx context.Context, b Backend, skipGas
Value: args.Value,
Data: (*hexutil.Bytes)(&data),
AccessList: args.AccessList,
BlobFeeCap: args.BlobFeeCap,
BlobHashes: args.BlobHashes,
}
latestBlockNr := rpc.BlockNumberOrHashWithNumber(rpc.LatestBlockNumber)
estimated, err := DoEstimateGas(ctx, b, callArgs, latestBlockNr, nil, b.RPCGasCap())