| 505 | } |
| 506 | |
| 507 | common::SettingsValue ArgsManager::GetPersistentSetting(const std::string& name) const |
| 508 | { |
| 509 | LOCK(cs_args); |
| 510 | return common::GetSetting(m_settings, m_network, name, !UseDefaultSection("-" + name), |
| 511 | /*ignore_nonpersistent=*/true, /*get_chain_type=*/false); |
| 512 | } |
| 513 | |
| 514 | bool ArgsManager::IsArgNegated(const std::string& strArg) const |
| 515 | { |
no test coverage detected