Merge #12001: [RPC] Adding ::minRelayTxFee amount to getmempoolinfo and updating...
[bitcoinplatinum.git] / src / rpc / mining.h
blob8d4627315949f93e8d001b5fae7c16fad3abee47
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.
5 #ifndef BITCOIN_RPC_MINING_H
6 #define BITCOIN_RPC_MINING_H
8 #include <script/script.h>
10 #include <univalue.h>
12 /** Generate blocks (mine) */
13 UniValue generateBlocks(std::shared_ptr<CReserveScript> coinbaseScript, int nGenerate, uint64_t nMaxTries, bool keepScript);
15 /** Check bounds on a command line confirm target */
16 unsigned int ParseConfirmTarget(const UniValue& value);
18 #endif