Skip to content

Commit c78954e

Browse files
authored
Import struct force var public visibility (#219)
# Changelog - `force` var in the `Import` struct made public # Context This is required to address #139 as we need to support importing wallet - which requires instantiating the `Import` struct
1 parent 152bfb4 commit c78954e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::{io::stdin, path::Path};
1515
pub struct Import {
1616
/// Forces wallet creation, removing any existing wallet file
1717
#[clap(short, long)]
18-
force: bool,
18+
pub force: bool,
1919
/// How many accounts to cache by default (Default 10)
2020
#[clap(short, long)]
2121
pub cache_accounts: Option<usize>,

0 commit comments

Comments
 (0)