Skip to content

Commit

Permalink
Connect checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare committed Aug 22, 2024
1 parent 4626501 commit 31174c8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
4 changes: 4 additions & 0 deletions evm_arithmetization/src/fixed_recursive_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1490,6 +1490,10 @@ where
let parent_pv = PublicValuesTarget::from_public_inputs(&parent_block_proof.public_inputs);

let final_pv = add_virtual_final_public_values_public_input(&mut builder);

// This also enforces that the initial state trie root that will be stored in
// these `FinalPublicValues` actually matches the known checkpoint state trie
// root.
final_pv.connect_parent(&mut builder, &parent_pv);

let block_verifier_data = builder.constant_verifier_data(&block.circuit.verifier_only);
Expand Down
17 changes: 4 additions & 13 deletions evm_arithmetization/src/proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,6 @@ pub struct FinalPublicValues {
pub state_trie_root_before: H256,
/// State trie root after the execution of this global state transition.
pub state_trie_root_after: H256,
/// The state trie digest of the checkpoint block.
pub checkpoint_state_trie_root: H256,
}

impl FinalPublicValues {
Expand All @@ -137,13 +135,10 @@ impl FinalPublicValues {
let state_trie_root_before = get_h256(&pis[offset..offset + TARGET_HASH_SIZE]);
offset += TARGET_HASH_SIZE;
let state_trie_root_after = get_h256(&pis[offset..offset + TARGET_HASH_SIZE]);
offset += TARGET_HASH_SIZE;
let checkpoint_state_trie_root = get_h256(&pis[offset..offset + TARGET_HASH_SIZE]);

Self {
state_trie_root_before,
state_trie_root_after,
checkpoint_state_trie_root,
}
}
}
Expand All @@ -153,7 +148,6 @@ impl From<PublicValues> for FinalPublicValues {
Self {
state_trie_root_before: value.trie_roots_before.state_root,
state_trie_root_after: value.trie_roots_after.state_root,
checkpoint_state_trie_root: value.extra_block_data.checkpoint_state_trie_root,
}
}
}
Expand All @@ -167,18 +161,15 @@ pub struct FinalPublicValuesTarget {
pub state_trie_root_before: [Target; TARGET_HASH_SIZE],
/// State trie root after the execution of this global state transition.
pub state_trie_root_after: [Target; TARGET_HASH_SIZE],
/// The state trie digest of the checkpoint block.
pub checkpoint_state_trie_root: [Target; TARGET_HASH_SIZE],
}

impl FinalPublicValuesTarget {
pub(crate) const SIZE: usize = TARGET_HASH_SIZE * 3;
pub(crate) const SIZE: usize = TARGET_HASH_SIZE * 2;

/// Serializes public value targets.
pub(crate) fn to_buffer(&self, buffer: &mut Vec<u8>) -> IoResult<()> {
buffer.write_target_array(&self.state_trie_root_before)?;
buffer.write_target_array(&self.state_trie_root_after)?;
buffer.write_target_array(&self.checkpoint_state_trie_root)?;

Ok(())
}
Expand All @@ -187,12 +178,10 @@ impl FinalPublicValuesTarget {
pub(crate) fn from_buffer(buffer: &mut Buffer) -> IoResult<Self> {
let state_trie_root_before = buffer.read_target_array()?;
let state_trie_root_after = buffer.read_target_array()?;
let checkpoint_state_trie_root = buffer.read_target_array()?;

Ok(Self {
state_trie_root_before,
state_trie_root_after,
checkpoint_state_trie_root,
})
}

Expand All @@ -212,8 +201,10 @@ impl FinalPublicValuesTarget {
self.state_trie_root_after[i],
pv1.trie_roots_after.state_root[i],
);
// We only use `FinalPublicValues` at the final block proof wrapping stage,
// where we should enforce consistency with the known checkpoint.
builder.connect(
self.checkpoint_state_trie_root[i],
self.state_trie_root_before[i],
pv1.extra_block_data.checkpoint_state_trie_root[i],
);
}
Expand Down
2 changes: 0 additions & 2 deletions evm_arithmetization/src/recursive_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -620,12 +620,10 @@ pub(crate) fn add_virtual_final_public_values_public_input<
) -> FinalPublicValuesTarget {
let state_trie_root_before = builder.add_virtual_public_input_arr();
let state_trie_root_after = builder.add_virtual_public_input_arr();
let checkpoint_state_trie_root = builder.add_virtual_public_input_arr();

FinalPublicValuesTarget {
state_trie_root_before,
state_trie_root_after,
checkpoint_state_trie_root,
}
}

Expand Down

0 comments on commit 31174c8

Please sign in to comment.