mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00
Merge branch 'main' into handle_old_proof_response
This commit is contained in:
commit
78471f5b64
3 changed files with 25 additions and 10 deletions
|
@ -26,7 +26,11 @@ use zksync_basic_types::L1BatchNumber;
|
|||
#[tokio::main]
|
||||
async fn main() -> Result<()> {
|
||||
let args = Arguments::parse();
|
||||
setup_logging(&args.log_level)?;
|
||||
tracing::subscriber::set_global_default(setup_logging(
|
||||
env!("CARGO_CRATE_NAME"),
|
||||
&args.log_level,
|
||||
)?)?;
|
||||
|
||||
validate_arguments(&args)?;
|
||||
let (stop_sender, stop_receiver) = watch::channel(false);
|
||||
let mut process_handle = tokio::spawn(verify_batches_proofs(stop_receiver, args));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue