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 8974859 commit ad3a89a
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 @@ -106,7 +106,7 @@ func (b *BlobTransactionBuilder) Build(
}

// Send the transaction to the L1 node.
data, err := encoding.TaikoL1ABI.Pack("proposeBlock", encodedParams, nil)
data, err := encoding.TaikoL1ABI.Pack("proposeBlock", encodedParams, []byte{})
if err != nil {
return nil, encoding.TryParsingCustomError(err)
}
Expand Down

0 comments on commit ad3a89a

Please sign in to comment.