Skip to content

Commit

Permalink
Update datatypes/src/main/java/org/hyperledger/besu/datatypes/BlobsWi…
Browse files Browse the repository at this point in the history
…thCommitments.java

Co-authored-by: Fabio Di Fabio <[email protected]>
Signed-off-by: Justin Florentine <[email protected]>
  • Loading branch information
jflo and fab-10 authored Nov 9, 2023
1 parent becabc0 commit 26ed020
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public BlobsWithCommitments(
throw new InvalidParameterException(
"There must be an equal number of blobs, commitments, proofs, and versioned hashes");
}
ArrayList<BlobQuad> toBuild = new ArrayList<>();
List<BlobQuad> toBuild = new ArrayList<>(blobs.size());
for (int i = 0; i < blobs.size(); i++) {
toBuild.add(
new BlobQuad(
Expand Down

0 comments on commit 26ed020

Please sign in to comment.