Skip to content

Commit

Permalink
Import struct force var public visibility (#219)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
zees-dev authored Oct 29, 2024
1 parent 152bfb4 commit c78954e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use std::{io::stdin, path::Path};
pub struct Import {
/// Forces wallet creation, removing any existing wallet file
#[clap(short, long)]
force: bool,
pub force: bool,
/// How many accounts to cache by default (Default 10)
#[clap(short, long)]
pub cache_accounts: Option<usize>,
Expand Down

0 comments on commit c78954e

Please sign in to comment.