Skip to content

Commit

Permalink
clean: lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhyk1 committed Oct 14, 2024
1 parent 278a823 commit bb171cb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions crates/rbuilder/src/backtest/backtest_build_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use ahash::HashMap;
use alloy_primitives::utils::format_ether;
use secp256k1::{rand::rngs::OsRng, SecretKey};
use revm_primitives::hex;
use secp256k1::{rand::rngs::OsRng, SecretKey};

use crate::backtest::restore_landed_orders::{
restore_landed_orders, sim_historical_block, ExecutedBlockTx, ExecutedTxs, SimplifiedOrder,
Expand All @@ -25,8 +25,7 @@ use crate::{
utils::timestamp_as_u64,
};
use clap::Parser;
use std::env;
use std::path::PathBuf;
use std::{env, path::PathBuf};

#[derive(Parser, Debug)]
struct Cli {
Expand Down Expand Up @@ -421,4 +420,4 @@ fn generate_private_key() -> String {
pub fn add_env_coinbase_signer() {
let private_key = generate_private_key();
env::set_var("COINBASE_SECRET_KEY", private_key);
}
}

0 comments on commit bb171cb

Please sign in to comment.