Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
fix(transaction_builder): fix an issue in BlobTransactionBuilder.Build
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Mar 25, 2024
1 parent 1960860 commit 8974859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposer/transaction_builder/blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (b *BlobTransactionBuilder) Build(
return nil, err
}

var blob *eth.Blob
var blob = &eth.Blob{}
if err := blob.FromData(txListBytes); err != nil {
return nil, err
}
Expand Down

0 comments on commit 8974859

Please sign in to comment.