forked from amjuarez/bytecoin
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathMinerConfig.cpp
More file actions
executable file
·54 lines (44 loc) · 2.07 KB
/
MinerConfig.cpp
File metadata and controls
executable file
·54 lines (44 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#include "MinerConfig.h"
#include "Common/CommandLine.h"
namespace CryptoNote {
namespace {
const command_line::arg_descriptor<std::string> arg_extra_messages = {"extra-messages-file", "Specify file for extra messages to include into coinbase transactions", "", true};
const command_line::arg_descriptor<std::string> arg_start_mining = {"start-mining", "Specify wallet address to mining for", "", true};
const command_line::arg_descriptor<uint32_t> arg_mining_threads = {"mining-threads", "Specify mining threads count", 0, true};
}
MinerConfig::MinerConfig() {
miningThreads = 0;
}
void MinerConfig::initOptions(boost::program_options::options_description& desc) {
command_line::add_arg(desc, arg_extra_messages);
command_line::add_arg(desc, arg_start_mining);
command_line::add_arg(desc, arg_mining_threads);
}
void MinerConfig::init(const boost::program_options::variables_map& options) {
if(command_line::has_arg(options, arg_extra_messages)) {
extraMessages = command_line::get_arg(options, arg_extra_messages);
}
if (command_line::has_arg(options, arg_start_mining)) {
startMining = command_line::get_arg(options, arg_start_mining);
}
if (command_line::has_arg(options, arg_mining_threads)) {
miningThreads = command_line::get_arg(options, arg_mining_threads);
}
}
} //namespace CryptoNote