diff options
author | xiphon <xiphon@protonmail.com> | 2019-02-25 01:31:45 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2019-02-25 03:22:14 +0000 |
commit | a54e81e57213aa6a983401b20c3e150550a6e948 (patch) | |
tree | fd0abbc73494e0ad5f503529184d49ec4c803ca6 /src/p2p/net_node.h | |
parent | Merge pull request #4988 (diff) | |
download | monero-a54e81e57213aa6a983401b20c3e150550a6e948.tar.xz |
daemon: add '--no-sync' arg to optionally disable blockchain sync
Diffstat (limited to 'src/p2p/net_node.h')
-rw-r--r-- | src/p2p/net_node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/p2p/net_node.h b/src/p2p/net_node.h index 112f30fb6..962cfbb89 100644 --- a/src/p2p/net_node.h +++ b/src/p2p/net_node.h @@ -478,6 +478,7 @@ namespace nodetool extern const command_line::arg_descriptor<std::vector<std::string> > arg_proxy; extern const command_line::arg_descriptor<std::vector<std::string> > arg_anonymous_inbound; extern const command_line::arg_descriptor<bool> arg_p2p_hide_my_port; + extern const command_line::arg_descriptor<bool> arg_no_sync; extern const command_line::arg_descriptor<bool> arg_no_igd; extern const command_line::arg_descriptor<bool> arg_offline; |