mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
util: Add ArgsManager SetConfigFilePath method
Needed by multiprocess support code to pass parsed configuration to a spawned process.
This commit is contained in:
parent
441d00c60f
commit
8062c3bdb9
2 changed files with 8 additions and 0 deletions
|
|
@ -720,6 +720,13 @@ fs::path ArgsManager::GetConfigFilePath() const
|
|||
return *Assert(m_config_path);
|
||||
}
|
||||
|
||||
void ArgsManager::SetConfigFilePath(fs::path path)
|
||||
{
|
||||
LOCK(cs_args);
|
||||
assert(!m_config_path);
|
||||
m_config_path = path;
|
||||
}
|
||||
|
||||
ChainType ArgsManager::GetChainType() const
|
||||
{
|
||||
std::variant<ChainType, std::string> arg = GetChainArg();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue