Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemka374 committed Dec 20, 2024
1 parent 22de0c9 commit 54a61c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-prover-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
if: matrix.compressor-mode == 'fflonk'
run: |
sudo sed -i 's/verifier_pre_fflonk: true/verifier_pre_fflonk: false/' general.yaml
grep "verifier_pre_fflonk" ./chains/proving_chain/configs/general.yaml | awk '{ print $2 }'
grep "verifier_pre_fflonk" general.yaml | awk '{ print $2 }'
- name: Prepare prover subsystem
run: |
Expand Down
4 changes: 2 additions & 2 deletions zkstack_cli/crates/zkstack/src/commands/chain/args/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl ChainCreateArgs {
}
}),
)
.ask()
.ask()
};

let prover_version = self.prover_mode.unwrap_or_else(|| {
Expand All @@ -130,7 +130,7 @@ impl ChainCreateArgs {
MSG_L1_BATCH_COMMIT_DATA_GENERATOR_MODE_PROMPT,
L1BatchCommitmentModeInternal::iter(),
)
.ask()
.ask()
});

let wallet_path: Option<PathBuf> = if wallet_creation == WalletCreation::InFile {
Expand Down

0 comments on commit 54a61c7

Please sign in to comment.