Skip to content

Commit

Permalink
decrease batch size in test
Browse files Browse the repository at this point in the history
  • Loading branch information
gshep committed Feb 4, 2025
1 parent f6a6338 commit dfb3d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/src/ethereum_checkpoints/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ async fn replay_back_and_updating() -> Result<()> {
let headers: Vec<BeaconBlockHeaderResponse> = serde_json::from_slice(&headers[..]).unwrap();

// start to replay back
let size_batch = 40 * SLOTS_PER_EPOCH as usize;
let size_batch = 30 * SLOTS_PER_EPOCH as usize;
let payload = Handle::ReplayBackStart {
sync_update: utils::sync_update_from_finality(
decode_signature(&finality_update.sync_aggregate),
Expand Down

0 comments on commit dfb3d19

Please sign in to comment.