Skip to content

Commit

Permalink
boot size
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Oct 28, 2024
1 parent ab18870 commit 7b1ee6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/client/src/boot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b1ee6a

Please sign in to comment.