File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -640,7 +640,6 @@ export class BlockHeader {
640
640
sszRaw ( ) : SSZHeaderType {
641
641
const header = {
642
642
parentHash : this . parentHash ,
643
- uncleHash : this . uncleHash ,
644
643
coinbase : this . coinbase . bytes ,
645
644
stateRoot : this . stateRoot ,
646
645
transactionsTrie : this . transactionsTrie ,
@@ -659,7 +658,7 @@ export class BlockHeader {
659
658
blob : this . common . isActivatedEIP ( 4844 ) ? this . getBlobGasPrice ( ) : null ,
660
659
} ,
661
660
withdrawalsRoot : this . withdrawalsRoot ?? null ,
662
- excessBlobGas : this . excessBlobGas ?? null ,
661
+ excessGas : { regular : null , blob : this . excessBlobGas ?? null } ,
663
662
parentBeaconBlockRoot : this . parentBeaconBlockRoot ?? null ,
664
663
requestsRoot : this . requestsRoot ?? null ,
665
664
}
Original file line number Diff line number Diff line change @@ -366,7 +366,6 @@ const MAX_EXTRA_DATA_BYTES = 32
366
366
export const BlockHeader = new StableContainerType (
367
367
{
368
368
parentHash : new OptionalType ( Bytes32 ) ,
369
- uncleHash : new OptionalType ( Bytes32 ) ,
370
369
coinbase : new OptionalType ( Bytes20 ) ,
371
370
stateRoot : new OptionalType ( Bytes32 ) ,
372
371
transactionsTrie : new OptionalType ( Bytes32 ) ,
@@ -379,7 +378,7 @@ export const BlockHeader = new StableContainerType(
379
378
mixHash : new OptionalType ( Bytes32 ) ,
380
379
baseFeePerGas : new OptionalType ( FeesPerGas ) ,
381
380
withdrawalsRoot : new OptionalType ( Bytes32 ) ,
382
- excessBlobGas : new OptionalType ( FeePerGas ) ,
381
+ excessGas : new OptionalType ( FeesPerGas ) ,
383
382
parentBeaconBlockRoot : new OptionalType ( Bytes32 ) ,
384
383
requestsRoot : new OptionalType ( Bytes32 ) ,
385
384
} ,
You can’t perform that action at this time.
0 commit comments