Fix size in verifier to fit tests

This commit is contained in:
danielsanchezq 2024-06-24 16:37:46 +02:00
parent 442cec3c89
commit ff2fa2958c
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ impl DaVerifier for KzgrsDaVerifier {
let blob = blob.clone();
// TODO: Prepare the domain depending the size, if fixed, so fixed domain, if not it needs
// to come with some metadata.
let domain_size = 4096usize;
let domain_size = 2usize;
match self.verifier.verify(blob, domain_size) {
Some(attestation) => Ok(attestation),
None => Err(KzgrsDaVerifierError::VerificationError),