Skip to content

Commit

Permalink
chore: expose new options for new_cli so that it can be used outside …
Browse files Browse the repository at this point in the history
…this repo (#160)

It turns out we need it for forc-client as new options changed since
last release and I failed to realize
  • Loading branch information
kayagokalp authored Jan 4, 2024
1 parent 16ed864 commit ab83453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::{io::stdin, path::Path};
pub struct New {
/// Forces wallet creation, removing any existing wallet file
#[clap(short, long)]
force: bool,
pub force: bool,
}

pub fn new_wallet_cli(wallet_path: &Path, new: New) -> anyhow::Result<()> {
Expand Down

0 comments on commit ab83453

Please sign in to comment.