From ab834535eaaca4d00e35c24438e3ff957e848c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaya=20G=C3=B6kalp?= Date: Thu, 4 Jan 2024 21:29:34 +0300 Subject: [PATCH] chore: expose new options for new_cli so that it can be used outside this repo (#160) It turns out we need it for forc-client as new options changed since last release and I failed to realize --- src/new.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/new.rs b/src/new.rs index 248d17e..db54911 100644 --- a/src/new.rs +++ b/src/new.rs @@ -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<()> {