Skip to content

Commit 695f9ea

Browse files
fix vk_hash param conversion to bytes in send_proof_to_verify_on_chain call
1 parent 2b67067 commit 695f9ea

File tree

1 file changed

+1
-1
lines changed
  • aggregation_mode/src/backend

1 file changed

+1
-1
lines changed

aggregation_mode/src/backend/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ impl ProofAggregator {
205205
ethrex_l2_common::calldata::Value::Bytes(
206206
proof.proof_with_pub_values.bytes().into(),
207207
),
208-
ethrex_l2_common::calldata::Value::FixedBytes(vk_hash.into()),
208+
ethrex_l2_common::calldata::Value::FixedBytes(vk_hash.to_vec().into()),
209209
],
210210
)
211211
.map_err(|e| AggregatedProofSubmissionError::BuildingCalldata(e.to_string()))?

0 commit comments

Comments
 (0)