Skip to content

Commit 28a7455

Browse files
authored
Small EIP-7826 (tx gas limit cap) related client test fix (#4137)
1 parent 986bb1e commit 28a7455

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/client/test/rpc/engine/getPayloadV5.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ describe(method, () => {
102102
maxFeePerBlobGas: 1n,
103103
maxFeePerGas: Units.gwei(10),
104104
maxPriorityFeePerGas: 100000000n,
105-
gasLimit: 30000000n,
105+
gasLimit: 16000000n,
106106
to: createZeroAddress(),
107107
},
108108
{ common },
@@ -120,7 +120,7 @@ describe(method, () => {
120120
maxFeePerBlobGas: 1n,
121121
maxFeePerGas: Units.gwei(10),
122122
maxPriorityFeePerGas: 100000000n,
123-
gasLimit: 30000000n,
123+
gasLimit: 16000000n,
124124
to: createZeroAddress(),
125125
},
126126
{ common },
@@ -153,7 +153,7 @@ describe(method, () => {
153153
const { executionPayload, blobsBundle } = res.result
154154
assert.equal(
155155
executionPayload.blockHash,
156-
'0x470b0993817584dcb186da39af9f41518f280fa85dc8a04695a3cd000bc8a9c9',
156+
'0xde5ad0b5d70ae112048b915f66cab04d1942c9eeb0a4b5f1d42fa80cc67167a4',
157157
'built expected block',
158158
)
159159
assert.equal(executionPayload.excessBlobGas, '0x0', 'correct excess blob gas')

0 commit comments

Comments
 (0)