Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

changes for GPU wrapper #178

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/proof_wrapper_utils/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub fn compress_stark_pi_to_snark_pi(
result
}

pub(crate) fn get_proof_for_previous_circuit<DS: SetupDataSource + BlockDataSource>(
pub fn get_proof_for_previous_circuit<DS: SetupDataSource + BlockDataSource>(
source: &DS,
circuit_type: u8,
) -> SourceResult<ZkSyncCompressionProof> {
Expand All @@ -59,7 +59,7 @@ pub(crate) fn get_proof_for_previous_circuit<DS: SetupDataSource + BlockDataSour
}
}

pub(crate) fn get_vk_for_previous_circuit<DS: SetupDataSource + BlockDataSource>(
pub fn get_vk_for_previous_circuit<DS: SetupDataSource + BlockDataSource>(
source: &DS,
circuit_type: u8,
) -> SourceResult<ZkSyncCompressionVerificationKey> {
Expand Down
2 changes: 1 addition & 1 deletion src/proof_wrapper_utils/wrapper.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::*;

pub(crate) const L1_VERIFIER_DOMAIN_SIZE_LOG: usize = 24;
pub const L1_VERIFIER_DOMAIN_SIZE_LOG: usize = 24;

pub fn get_wrapper_setup_and_vk_from_compression_vk(
vk: ZkSyncCompressionForWrapperVerificationKey,
Expand Down
Loading