From eb56d88466edd74f34bb97d08207f5c026583a61 Mon Sep 17 00:00:00 2001 From: syntrust Date: Mon, 9 Feb 2026 19:10:38 +0800 Subject: [PATCH 1/2] fix workflow --- integration_tests/scripts/check_latest_blob.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/scripts/check_latest_blob.sh b/integration_tests/scripts/check_latest_blob.sh index 73b44534..2d688a7d 100755 --- a/integration_tests/scripts/check_latest_blob.sh +++ b/integration_tests/scripts/check_latest_blob.sh @@ -36,7 +36,7 @@ echo "Failed to get latest block" >&2 exit 1 fi -latest_dec=$((latest_dec - 64)) # adjust to finalized +latest_dec=$((latest_dec - 64 - 15)) # adjust to finalized, and add some buffer for blob downloading from_dec=$((latest_dec - lookback)) from_hex="$(cast to-hex "$from_dec")" to_hex="$(cast to-hex "$latest_dec")" From 7523dfcbd11817548cc171aca13b771cc4df159f Mon Sep 17 00:00:00 2001 From: syntrust Date: Tue, 10 Feb 2026 10:33:45 +0800 Subject: [PATCH 2/2] extend buffer --- integration_tests/scripts/check_latest_blob.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/scripts/check_latest_blob.sh b/integration_tests/scripts/check_latest_blob.sh index 2d688a7d..859a491f 100755 --- a/integration_tests/scripts/check_latest_blob.sh +++ b/integration_tests/scripts/check_latest_blob.sh @@ -36,7 +36,7 @@ echo "Failed to get latest block" >&2 exit 1 fi -latest_dec=$((latest_dec - 64 - 15)) # adjust to finalized, and add some buffer for blob downloading +latest_dec=$((latest_dec - 64 - 32)) # adjust to finalized, and add some buffer (1 epoch) for blob downloading to disk from_dec=$((latest_dec - lookback)) from_hex="$(cast to-hex "$from_dec")" to_hex="$(cast to-hex "$latest_dec")"