File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed
Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 1919#ifndef LIBBITCOIN_NODE_CONFIGURATION_HPP
2020#define LIBBITCOIN_NODE_CONFIGURATION_HPP
2121
22- #include < cstddef>
23- #include < string>
2422#include < boost/filesystem.hpp>
25- #include < boost/program_options.hpp>
2623#include < bitcoin/blockchain.hpp>
2724#include < bitcoin/network.hpp>
2825#include < bitcoin/node/define.hpp>
@@ -47,7 +44,6 @@ class BCN_API configuration
4744{
4845public:
4946 configuration (config::settings context);
50- configuration (const configuration& other);
5147
5248 // / Options.
5349 bool help;
Original file line number Diff line number Diff line change @@ -38,19 +38,5 @@ configuration::configuration(config::settings context)
3838{
3939}
4040
41- // Copy constructor.
42- configuration::configuration (const configuration& other)
43- : help(other.help),
44- initchain(other.initchain),
45- settings(other.settings),
46- version(other.version),
47- file(other.file),
48- node(other.node),
49- chain(other.chain),
50- database(other.database),
51- network(other.network)
52- {
53- }
54-
5541} // namespace node
5642} // namespace libbitcoin
You can’t perform that action at this time.
0 commit comments