From ecdc8c3b0be459fcb5f2b13995d85bed6ba4717d Mon Sep 17 00:00:00 2001 From: Arya Date: Fri, 28 Jun 2024 12:43:06 -0400 Subject: [PATCH] increase expected height in checkpoint test (#8656) --- zebrad/tests/acceptance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index c2a78a887..ba26cc0f2 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -1267,7 +1267,7 @@ fn create_cached_database(network: Network) -> Result<()> { #[tracing::instrument] fn sync_past_mandatory_checkpoint(network: Network) -> Result<()> { - let height = network.mandatory_checkpoint_height() + 1200; + let height = network.mandatory_checkpoint_height() + (32_257 + 1200); let full_validation_stop_regex = format!("{STOP_AT_HEIGHT_REGEX}.*commit contextually-verified request");