We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64250ed commit 89a6443Copy full SHA for 89a6443
aggregation_mode/src/backend/mod.rs
@@ -107,14 +107,12 @@ impl ProofAggregator {
107
let sp1_chunk_aggregator_vk_hash_bytes: Bytes =
108
hex::decode(config.sp1_chunk_aggregator_vk_hash.clone())
109
.expect("Failed to decode SP1 chunk aggregator VK hash")
110
- .try_into()
111
- .expect("VK hash is not 32 bytes");
+ .into();
112
113
let risc0_chunk_aggregator_image_id_bytes: Bytes =
114
hex::decode(config.risc0_chunk_aggregator_image_id.clone())
115
.expect("Failed to decode Risc0 chunk aggregator image id")
116
117
- .expect("Risc0 image id is not 32 bytes");
118
119
Self {
120
engine,
0 commit comments