Skip to content

Commit

Permalink
fix the blob tx convert
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgao001 committed Jul 19, 2024
1 parent bd8e075 commit b43ce17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/blockarchiver/converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ func convertBlock(block *Block) (*GeneralBlock, error) {
Value: uint256.NewInt(val.Uint64()),
Data: input,
AccessList: accessList,
V: uint256.NewInt(v.Uint64()),
R: uint256.NewInt(r.Uint64()),
S: uint256.NewInt(s.Uint64()),
V: uint256.MustFromBig(v),
R: uint256.MustFromBig(r),
S: uint256.MustFromBig(s),
BlobFeeCap: uint256.NewInt(maxFeePerBlobGas.Uint64()),
BlobHashes: blobHashes,
})
Expand Down

0 comments on commit b43ce17

Please sign in to comment.