Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Nov 25, 2024
1 parent a5e87f4 commit 062058a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use serde::{Deserialize, Serialize};
use zksync_basic_types::L2ChainId;

use crate::{
consts::INITIAL_DEPLOYMENT_FILE, ERC20_DEPLOYMENT_FILE,
consts::INITIAL_DEPLOYMENT_FILE,
traits::{FileConfigWithDefaultName, ZkToolboxConfig},
ContractsConfig, GenesisConfig, WalletsConfig,
ContractsConfig, GenesisConfig, WalletsConfig, ERC20_DEPLOYMENT_FILE,
};

#[derive(Debug, Deserialize, Serialize, Clone)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ pub struct DeployL2ContractsInput {

impl DeployL2ContractsInput {
pub fn new(
ecosystem_config: &EcosystemConfig,
chain_config: &ChainConfig,
) -> anyhow::Result<Self> {
ecosystem_config: &EcosystemConfig,
chain_config: &ChainConfig,
) -> anyhow::Result<Self> {
let contracts = ecosystem_config.get_contracts_config()?;
Ok(Self {
era_chain_id: ecosystem_config.era_chain_id,
Expand Down

0 comments on commit 062058a

Please sign in to comment.