| 962 | } |
| 963 | |
| 964 | common::SettingsValue ArgsManager::GetSetting_(const std::string& arg) const |
| 965 | { |
| 966 | AssertLockHeld(cs_args); |
| 967 | return common::GetSetting( |
| 968 | m_settings, m_network, SettingName(arg), !UseDefaultSection(arg), |
| 969 | /*ignore_nonpersistent=*/false, /*get_chain_type=*/false); |
| 970 | } |
| 971 | |
| 972 | common::SettingsValue ArgsManager::GetSetting(const std::string& arg) const |
| 973 | { |
nothing calls this directly
no test coverage detected