internal/ethapi: skipped maxFeePerBlobGas related test

This commit is contained in:
Pratik Patil 2025-05-13 12:21:10 +05:30
parent 336d7db52b
commit 6b5899125b
No known key found for this signature in database
GPG key ID: AFDCA496554874B3

View file

@ -216,6 +216,8 @@ func TestSetFeeDefaults(t *testing.T) {
nil, nil,
errors.New("both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified"), errors.New("both gasPrice and (maxFeePerGas or maxPriorityFeePerGas) specified"),
}, },
// bor: skipping as it's not relevant to bor
/*
{ {
"fill maxFeePerBlobGas", "fill maxFeePerBlobGas",
"cancun", "cancun",
@ -230,6 +232,7 @@ func TestSetFeeDefaults(t *testing.T) {
&TransactionArgs{BlobHashes: []common.Hash{}, BlobFeeCap: (*hexutil.Big)(big.NewInt(4)), MaxFeePerGas: maxFee, MaxPriorityFeePerGas: fortytwo}, &TransactionArgs{BlobHashes: []common.Hash{}, BlobFeeCap: (*hexutil.Big)(big.NewInt(4)), MaxFeePerGas: maxFee, MaxPriorityFeePerGas: fortytwo},
nil, nil,
}, },
*/
} }
ctx := context.Background() ctx := context.Background()