Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Nov 2, 2023
1 parent d4a2bc0 commit 9b42dcb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

package tech.pegasys.teku.networking.eth2.rpc.beaconchain.methods;

import java.util.HashSet;
import java.util.List;
import tech.pegasys.teku.infrastructure.async.SafeFuture;
import tech.pegasys.teku.kzg.KZG;
Expand All @@ -34,7 +33,7 @@ public BlobSidecarsByRootListenerValidatingProxy(
final RpcResponseListener<BlobSidecar> delegate,
final KZG kzg,
final List<BlobIdentifier> expectedBlobIdentifiers) {
super(peer, spec, kzg, new HashSet<>(expectedBlobIdentifiers));
super(peer, spec, kzg, expectedBlobIdentifiers);
this.delegate = delegate;
}

Expand Down

0 comments on commit 9b42dcb

Please sign in to comment.