From 6d48859e80d1fe5e6833ab11dd7f548ad86f0e2e Mon Sep 17 00:00:00 2001 From: Bronek Kozicki Date: Fri, 18 Sep 2026 10:44:39 +0100 Subject: [PATCH] Fix block root helper reference in columns test Use the existing silver_common::block_root_fulu import instead of the stale util path, which prevented the test target from compiling. Assisted-by: Codex:GPT-6 --- crates/columns/src/tile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/columns/src/tile.rs b/crates/columns/src/tile.rs index 04ea7187..4d84abc4 100644 --- a/crates/columns/src/tile.rs +++ b/crates/columns/src/tile.rs @@ -1426,7 +1426,7 @@ mod tests { #[test] fn el_column_that_fails_to_write_is_not_recorded() { let block_bytes = blob_block_bytes(42); - let block_root = util::block_root_fulu(&block_bytes); + let block_root = block_root_fulu(&block_bytes); // Keep the cache power-of-two sized but too small for one sidecar. let too_small = util::data_column_sidecar_len(1).next_power_of_two() / 2; let custody_count = CUSTODY_COLUMNS.count_ones() as usize;