diff options
| author | Marko Bencun <[email protected]> | 2017-09-11 16:13:46 +0200 |
|---|---|---|
| committer | Marko Bencun <[email protected]> | 2017-09-11 16:17:01 +0200 |
| commit | 605918272cd806d0ee77a391d00360b925a5fab3 (patch) | |
| tree | da5a5c406400bc339918f67c2d3cbb56a82daab5 /src/net.h | |
| parent | Merge #11297: Make sure ~/.bitcoin doesn't exist before build (diff) | |
| download | discoin-605918272cd806d0ee77a391d00360b925a5fab3.tar.xz discoin-605918272cd806d0ee77a391d00360b925a5fab3.zip | |
add m_added_nodes to connman options
Diffstat (limited to 'src/net.h')
| -rw-r--r-- | src/net.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -147,6 +147,7 @@ public: std::vector<CService> vBinds, vWhiteBinds; bool m_use_addrman_outgoing = true; std::vector<std::string> m_specified_outgoing; + std::vector<std::string> m_added_nodes; }; void Init(const Options& connOptions) { @@ -164,6 +165,7 @@ public: nMaxOutboundTimeframe = connOptions.nMaxOutboundTimeframe; nMaxOutboundLimit = connOptions.nMaxOutboundLimit; vWhitelistedRange = connOptions.vWhitelistedRange; + vAddedNodes = connOptions.m_added_nodes; } CConnman(uint64_t seed0, uint64_t seed1); |