1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
crate::ix!();

impl ArgsManagerInner {

    /**
      | Returns true if settings values from
      | the default section should be used,
      | depending on the current network and
      | whether the setting is network-specific.
      |
      */
    pub fn use_default_section(&self, arg: &str) -> bool {
        
        self.network == Some(base_chain_params::MAIN.to_string()) 
        || !self.network_only_args.contains(arg)
    }
}