Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Jan 10, 2025
1 parent 233e7f2 commit eead917
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class PeerSyncTest extends AbstractSyncTest {
UInt64.valueOf(SyncConfig.DEFAULT_FORWARD_SYNC_BATCH_SIZE);

private static final Bytes32 PEER_HEAD_BLOCK_ROOT = Bytes32.fromHexString("0x1234");
private static final UInt64 PEER_HEAD_SLOT = UInt64.valueOf(30);
private static final UInt64 PEER_HEAD_SLOT = UInt64.valueOf(20);
private static final UInt64 PEER_FINALIZED_EPOCH = UInt64.valueOf(3);

private final int slotsPerEpoch = spec.getGenesisSpecConfig().getSlotsPerEpoch();
Expand All @@ -73,7 +73,7 @@ public class PeerSyncTest extends AbstractSyncTest {
PEER_HEAD_BLOCK_ROOT,
PEER_HEAD_SLOT));

private final UInt64 denebPeerSlotsAhead = UInt64.valueOf(30);
private final UInt64 denebPeerSlotsAhead = UInt64.valueOf(20);
private final UInt64 denebPeerHeadSlot = denebFirstSlot.plus(denebPeerSlotsAhead);
private final UInt64 denebPeerFinalizedEpoch = spec.computeEpochAtSlot(denebPeerHeadSlot);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ private String[] createCliArgs() {
"--Xpeer-blob-sidecars-rate-limit",
"1500",
"--Xpeer-request-limit",
"50"
"100"
};
}

Expand Down

0 comments on commit eead917

Please sign in to comment.