Skip to content

Commit

Permalink
Update relayer tests after changing verifier constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
themicp committed Jan 19, 2024
1 parent f0e2e85 commit cdc1f56
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions relayer/src/relayer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,11 +341,10 @@ impl<C: Amqp, P: ProverAPI, CR: EthBeaconAPI, ER: EthExecutionAPI, V: VerifierAP

#[cfg(test)]
mod tests {
use self::verifier::MockVerifierAPI;

use super::*;
use crate::consumers::MockLapinConsumer;
use crate::types::{Config, VerificationMethod};
use crate::verifier::{MockVerifierAPI, Verifier};
use consensus_types::consensus::{BeaconBlockAlias, FinalityUpdate};
use consensus_types::proofs::{
AncestryProof, BlockProofsBatch, CrossChainId, Message, TransactionProofsBatch,
Expand Down Expand Up @@ -700,7 +699,7 @@ mod tests {
Arc::new(consensus),
Arc::new(execution),
Arc::new(prover),
Verifier::new("".to_string(), "".to_string()),
Verifier::new("".to_string(), "".to_string(), "".to_string()),
)
.await;

Expand Down

0 comments on commit cdc1f56

Please sign in to comment.