mirror of
https://github.com/monero-project/monero.git
synced 2025-07-23 12:50:41 -04:00
Merge pull request #5190
551104fb
daemon: add --public-node mode, RPC port propagation over P2P (xiphon)
This commit is contained in:
commit
848591c4d8
20 changed files with 147 additions and 30 deletions
|
@ -45,6 +45,10 @@ namespace daemonize
|
|||
|
||||
static std::string const NAME;
|
||||
|
||||
t_executor(uint16_t public_rpc_port = 0) : public_rpc_port(public_rpc_port)
|
||||
{
|
||||
}
|
||||
|
||||
static void init_options(
|
||||
boost::program_options::options_description & configurable_options
|
||||
);
|
||||
|
@ -62,5 +66,8 @@ namespace daemonize
|
|||
bool run_interactive(
|
||||
boost::program_options::variables_map const & vm
|
||||
);
|
||||
|
||||
private:
|
||||
uint16_t public_rpc_port;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue