Skip to content

Commit b50708e

Browse files
committed
fix da-avail build
1 parent e3cf8ac commit b50708e

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

aggregator/src/blob_consistency/avail.rs

+20-15
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ use crate::{BatchData, RlcConfig};
33
use eth_types::{H256, U256};
44
use halo2_base::{gates::range::RangeConfig, AssignedValue, Context};
55
use halo2_ecc::bigint::CRTInteger;
6+
use halo2_proofs::halo2curves::bls12_381::Scalar;
67
use halo2_proofs::{
78
circuit::{AssignedCell, Layouter, Value},
89
halo2curves::bn256::Fr,
910
plonk::{ConstraintSystem, Error, Expression},
1011
};
11-
use serde::{Deserialize, Serialize};
1212
use snark_verifier_sdk::LIMBS;
1313
use zkevm_circuits::{table::U8Table, util::Challenges};
1414

@@ -55,31 +55,36 @@ impl<const N_SNARKS: usize> BlobConsistencyConfig<N_SNARKS> {
5555
}
5656
}
5757

58-
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
58+
#[derive(Debug, Clone, Copy, Default)]
5959
pub struct BlobConsistencyWitness {
60-
#[serde(rename = "blob_versioned_hash")]
61-
id: H256,
62-
blob_data_proof: [H256; 2],
60+
blob_versioned_hash: H256,
61+
challenge_digest: H256,
62+
evaluation: Scalar,
6363
}
6464

6565
impl BlobConsistencyWitness {
66-
pub fn new<const N_SNARKS: usize>(_bytes: &[u8], _: &BatchData<N_SNARKS>) -> Self {
67-
Self {
68-
id: H256::default(), // should be keccak of bytes
69-
blob_data_proof: Default::default(),
70-
}
66+
pub fn new<const N_SNARKS: usize>(_bytes: &[u8], _batch_data: &BatchData<N_SNARKS>) -> Self {
67+
unimplemented!()
7168
}
7269

7370
pub fn id(&self) -> H256 {
74-
self.id
71+
unimplemented!()
72+
}
73+
74+
pub fn challenge_digest(&self) -> U256 {
75+
unimplemented!()
7576
}
7677

77-
pub fn challenge(&self) -> H256 {
78-
self.blob_data_proof[0]
78+
pub fn challenge(&self) -> Scalar {
79+
unimplemented!()
7980
}
8081

81-
pub fn evaluation(&self) -> H256 {
82-
self.blob_data_proof[1]
82+
pub fn evaluation(&self) -> Scalar {
83+
unimplemented!()
84+
}
85+
86+
pub fn blob_data_proof(&self) -> [H256; 2] {
87+
unimplemented!()
8388
}
8489
}
8590

0 commit comments

Comments
 (0)