BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
mining.h
Go to the documentation of this file.
1 // Copyright (c) 2017 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_RPC_MINING_H
6 #define BITCOIN_RPC_MINING_H
7 
8 #include <script/script.h>
9 
10 #include <univalue.h>
11 
12 static const bool DEFAULT_GENERATE = false;
13 static const int DEFAULT_GENERATE_THREADS = 1;
14 
16 UniValue generateBlocks(std::shared_ptr<CReserveScript> coinbaseScript, int nGenerate, uint64_t nMaxTries, bool keepScript);
17 
18 UniValue getgenerate(const UniValue& params, bool fHelp);
19 
21 unsigned int ParseConfirmTarget(const UniValue& value);
22 
23 #endif
UniValue getgenerate(const UniValue &params, bool fHelp)
unsigned int ParseConfirmTarget(const UniValue &value)
Check bounds on a command line confirm target.
Definition: mining.cpp:33
UniValue generateBlocks(std::shared_ptr< CReserveScript > coinbaseScript, int nGenerate, uint64_t nMaxTries, bool keepScript)
Generate blocks (mine)
Definition: mining.cpp:124