From 7b1ee6acf63b180defadc0d3abcf00a4791a6630 Mon Sep 17 00:00:00 2001 From: ratankaliani Date: Mon, 28 Oct 2024 04:16:59 +0000 Subject: [PATCH] boot size --- utils/client/src/boot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/client/src/boot.rs b/utils/client/src/boot.rs index 2915b781..26f5928b 100644 --- a/utils/client/src/boot.rs +++ b/utils/client/src/boot.rs @@ -7,8 +7,8 @@ use op_alloy_genesis::RollupConfig; use serde::{Deserialize, Serialize}; use sha2::{Digest, Sha256}; -// ABI encoding of AggregationOutputs is 7 * 32 bytes. -pub const AGGREGATION_OUTPUTS_SIZE: usize = 7 * 32; +// ABI encoding of AggregationOutputs is 6 * 32 bytes. +pub const AGGREGATION_OUTPUTS_SIZE: usize = 6 * 32; /// Hash the serialized rollup config using SHA256. Note: The rollup config is never unrolled /// on-chain, so switching to a different hash function is not a concern, as long as the config hash