File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,8 @@ import type {
25
25
TxOptions ,
26
26
} from '../types.js'
27
27
import type { TxData , TxValuesArray } from './tx.js'
28
- import type { KZG , PrefixedHexString } from '@ethereumjs/util'
29
28
import type { ValueOf } from '@chainsafe/ssz'
30
- import type { ssz } from '@ethereumjs/util'
29
+ import type { KZG , PrefixedHexString , ssz } from '@ethereumjs/util'
31
30
32
31
export type Eip4844TransactionType = ValueOf < typeof ssz . Eip4844Transaction >
33
32
Original file line number Diff line number Diff line change @@ -8,10 +8,9 @@ import {
8
8
bigIntToUnpaddedBytes ,
9
9
bytesToBigInt ,
10
10
hexToBytes ,
11
- toBytes ,
12
- toType ,
13
11
setLengthLeft ,
14
12
toBytes ,
13
+ toType ,
15
14
} from '@ethereumjs/util'
16
15
17
16
import { BaseTransaction } from '../baseTransaction.js'
@@ -239,7 +238,7 @@ export class Blob4844Tx extends BaseTransaction<TransactionType.BlobEIP4844> {
239
238
regular : this . maxPriorityFeePerGas ,
240
239
blob : this . maxPriorityFeePerGas ,
241
240
} ,
242
- blobVersionedHashes : this . blobVersionedHashes ,
241
+ blobVersionedHashes : this . blobVersionedHashes . map ( ( vh ) => hexToBytes ( vh ) ) ,
243
242
}
244
243
245
244
const yParity = this . v
You can’t perform that action at this time.
0 commit comments