Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Sep 4, 2023
1 parent cb4b398 commit a47d608
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ pub fn print_banner(args: &Args, env: &Environment) {
println!("| __ )| | ___ | |__ ___ ___ __ _ _ __ ");
println!("| _ \\| |/ _ \\| '_ \\/ __|/ __/ _` | '_ \\ ");
println!("| |_) | | (_) | |_) \\__ \\ (_| (_| | | | |");
println!("|____/|_|\\___/|_.__/|___/\\___\\__,_|_| |_|");
println!("");
println!("|____/|_|\\___/|_.__/|___/\\___\\__,_|_| |_|\n");
println!("Blobscan indexer (EIP-4844 blob indexer) - blobscan.com");
println!("=======================================================");
if num_threads == 0 {
Expand All @@ -38,7 +37,7 @@ pub fn print_banner(args: &Args, env: &Environment) {
println!("CL endpoint: {}", env.beacon_node_endpoint);
println!("EL endpoint: {}", env.execution_node_endpoint);
println!("Sentry DSN: {}", sentry_dsn.unwrap_or_default());
println!("");
println!("\n");
}

pub async fn run(env: Environment) -> Result<()> {
Expand Down

0 comments on commit a47d608

Please sign in to comment.