2012-08-21 08:21:33 +02:00
// Copyright (c) 2010 Satoshi Nakamoto
2015-12-13 14:51:43 +01:00
// Copyright (c) 2009-2015 The Bitcoin Core developers
2016-12-20 14:26:45 +01:00
// Copyright (c) 2014-2017 The Dash Core developers
2014-11-20 03:19:29 +01:00
// Distributed under the MIT software license, see the accompanying
2012-08-21 08:21:33 +02:00
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2015-01-08 19:02:10 +01:00
# include "base58.h"
2014-10-23 02:05:11 +02:00
# include "amount.h"
2015-07-05 14:17:46 +02:00
# include "chain.h"
2013-05-07 15:16:25 +02:00
# include "chainparams.h"
2015-01-24 15:29:29 +01:00
# include "consensus/consensus.h"
2017-04-11 12:53:54 +02:00
# include "consensus/params.h"
2015-01-24 15:57:12 +01:00
# include "consensus/validation.h"
2014-09-14 12:43:56 +02:00
# include "core_io.h"
2012-08-21 08:21:33 +02:00
# include "init.h"
2017-08-09 02:19:06 +02:00
# include "validation.h"
2013-07-31 15:43:35 +02:00
# include "miner.h"
2015-01-24 15:29:29 +01:00
# include "net.h"
2014-03-10 16:46:53 +01:00
# include "pow.h"
2017-07-03 15:13:34 +02:00
# include "rpc/server.h"
2016-02-17 17:29:36 +01:00
# include "spork.h"
2015-07-05 14:17:46 +02:00
# include "txmempool.h"
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
# include "util.h"
2015-07-05 14:17:46 +02:00
# include "utilstrencodings.h"
2015-03-24 22:14:44 +01:00
# include "validationinterface.h"
2014-05-10 14:54:20 +02:00
2017-12-01 06:14:57 +01:00
# include "governance-classes.h"
2017-12-01 19:53:34 +01:00
# include "masternode-payments.h"
# include "masternode-sync.h"
2017-12-01 06:14:57 +01:00
2013-04-13 07:13:08 +02:00
# include <stdint.h>
2014-03-17 13:19:54 +01:00
# include <boost/assign/list_of.hpp>
2015-07-01 08:32:30 +02:00
# include <boost/shared_ptr.hpp>
2014-05-10 14:54:20 +02:00
2015-09-04 16:11:34 +02:00
# include <univalue.h>
2012-08-21 08:21:33 +02:00
using namespace std ;
2014-11-20 03:19:29 +01:00
/**
* Return average network hashes per second based on the last ' lookup ' blocks ,
* or from the last difficulty change if ' lookup ' is nonpositive .
* If ' height ' is nonnegative , compute the estimate at the time when a given block was found .
*/
2015-05-13 21:29:19 +02:00
UniValue GetNetworkHashPS ( int lookup , int height ) {
2013-12-29 12:14:06 +01:00
CBlockIndex * pb = chainActive . Tip ( ) ;
if ( height > = 0 & & height < chainActive . Height ( ) )
pb = chainActive [ height ] ;
2013-05-17 12:57:05 +02:00
if ( pb = = NULL | | ! pb - > nHeight )
return 0 ;
// If lookup is -1, then use blocks since last difficulty change.
if ( lookup < = 0 )
2015-04-10 18:35:09 +02:00
lookup = pb - > nHeight % Params ( ) . GetConsensus ( ) . DifficultyAdjustmentInterval ( ) + 1 ;
2013-05-17 12:57:05 +02:00
// If lookup is larger than chain, then set it to chain length.
if ( lookup > pb - > nHeight )
lookup = pb - > nHeight ;
CBlockIndex * pb0 = pb ;
2013-04-13 07:13:08 +02:00
int64_t minTime = pb0 - > GetBlockTime ( ) ;
int64_t maxTime = minTime ;
2013-05-17 12:57:05 +02:00
for ( int i = 0 ; i < lookup ; i + + ) {
pb0 = pb0 - > pprev ;
2013-04-13 07:13:08 +02:00
int64_t time = pb0 - > GetBlockTime ( ) ;
2013-05-17 12:57:05 +02:00
minTime = std : : min ( time , minTime ) ;
maxTime = std : : max ( time , maxTime ) ;
}
// In case there's a situation where minTime == maxTime, we don't want a divide by zero exception.
if ( minTime = = maxTime )
return 0 ;
2014-12-16 15:43:03 +01:00
arith_uint256 workDiff = pb - > nChainWork - pb0 - > nChainWork ;
2013-04-13 07:13:08 +02:00
int64_t timeDiff = maxTime - minTime ;
2013-05-17 12:57:05 +02:00
2016-02-08 16:49:27 +01:00
return workDiff . getdouble ( ) / timeDiff ;
2013-05-17 12:57:05 +02:00
}
2015-05-18 14:02:18 +02:00
UniValue getnetworkhashps ( const UniValue & params , bool fHelp )
2013-05-17 12:57:05 +02:00
{
if ( fHelp | | params . size ( ) > 2 )
throw runtime_error (
2013-10-29 12:29:44 +01:00
" getnetworkhashps ( blocks height ) \n "
" \n Returns the estimated network hashes per second based on the last n blocks. \n "
2013-05-17 12:57:05 +02:00
" Pass in [blocks] to override # of blocks, -1 specifies since last difficulty change. \n "
2013-10-29 12:29:44 +01:00
" Pass in [height] to estimate the network speed at the time when a certain block was found. \n "
" \n Arguments: \n "
" 1. blocks (numeric, optional, default=120) The number of blocks, or -1 for blocks since last difficulty change. \n "
" 2. height (numeric, optional, default=-1) To estimate at the time of the given height. \n "
" \n Result: \n "
" x (numeric) Hashes per second estimated \n "
" \n Examples: \n "
+ HelpExampleCli ( " getnetworkhashps " , " " )
+ HelpExampleRpc ( " getnetworkhashps " , " " )
) ;
2013-05-17 12:57:05 +02:00
2014-10-19 10:46:17 +02:00
LOCK ( cs_main ) ;
2013-05-17 12:57:05 +02:00
return GetNetworkHashPS ( params . size ( ) > 0 ? params [ 0 ] . get_int ( ) : 120 , params . size ( ) > 1 ? params [ 1 ] . get_int ( ) : - 1 ) ;
}
2016-03-23 13:24:34 +01:00
UniValue generateBlocks ( boost : : shared_ptr < CReserveScript > coinbaseScript , int nGenerate , uint64_t nMaxTries , bool keepScript )
2015-04-01 05:28:28 +02:00
{
2016-03-14 11:35:55 +01:00
static const int nInnerLoopCount = 0x10000 ;
2015-04-01 05:28:28 +02:00
int nHeightStart = 0 ;
int nHeightEnd = 0 ;
int nHeight = 0 ;
{ // Don't keep cs_main locked
LOCK ( cs_main ) ;
nHeightStart = chainActive . Height ( ) ;
nHeight = nHeightStart ;
nHeightEnd = nHeightStart + nGenerate ;
}
2015-04-10 07:33:06 +02:00
unsigned int nExtraNonce = 0 ;
2015-05-10 14:48:35 +02:00
UniValue blockHashes ( UniValue : : VARR ) ;
2015-04-10 07:33:06 +02:00
while ( nHeight < nHeightEnd )
{
2016-06-13 11:27:11 +02:00
std : : unique_ptr < CBlockTemplate > pblocktemplate ( BlockAssembler ( Params ( ) ) . CreateNewBlock ( coinbaseScript - > reserveScript ) ) ;
2015-04-10 07:33:06 +02:00
if ( ! pblocktemplate . get ( ) )
2015-04-10 12:49:01 +02:00
throw JSONRPCError ( RPC_INTERNAL_ERROR , " Couldn't create new block " ) ;
2015-04-10 07:33:06 +02:00
CBlock * pblock = & pblocktemplate - > block ;
{
LOCK ( cs_main ) ;
IncrementExtraNonce ( pblock , chainActive . Tip ( ) , nExtraNonce ) ;
}
2016-03-14 11:35:55 +01:00
while ( nMaxTries > 0 & & pblock - > nNonce < nInnerLoopCount & & ! CheckProofOfWork ( pblock - > GetHash ( ) , pblock - > nBits , Params ( ) . GetConsensus ( ) ) ) {
2015-04-10 07:33:06 +02:00
+ + pblock - > nNonce ;
2016-03-14 11:35:55 +01:00
- - nMaxTries ;
}
if ( nMaxTries = = 0 ) {
break ;
}
if ( pblock - > nNonce = = nInnerLoopCount ) {
continue ;
2015-04-10 07:33:06 +02:00
}
2017-08-02 20:35:04 +02:00
if ( ! ProcessNewBlock ( Params ( ) , pblock , true , NULL , NULL ) )
2015-04-10 07:33:06 +02:00
throw JSONRPCError ( RPC_INTERNAL_ERROR , " ProcessNewBlock, block not accepted " ) ;
2015-04-01 05:28:28 +02:00
+ + nHeight ;
2015-04-10 07:33:06 +02:00
blockHashes . push_back ( pblock - > GetHash ( ) . GetHex ( ) ) ;
2015-07-01 08:32:30 +02:00
2016-03-23 13:24:34 +01:00
//mark script as important because it was used at least for one coinbase output if the script came from the wallet
if ( keepScript )
{
coinbaseScript - > KeepScript ( ) ;
}
2015-04-01 05:28:28 +02:00
}
return blockHashes ;
}
2012-08-21 08:21:33 +02:00
2016-03-23 13:24:34 +01:00
UniValue generate ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) < 1 | | params . size ( ) > 2 )
throw runtime_error (
" generate numblocks ( maxtries ) \n "
" \n Mine up to numblocks blocks immediately (before the RPC call returns) \n "
" \n Arguments: \n "
" 1. numblocks (numeric, required) How many blocks are generated immediately. \n "
" 2. maxtries (numeric, optional) How many iterations to try (default = 1000000). \n "
" \n Result \n "
" [ blockhashes ] (array) hashes of blocks generated \n "
" \n Examples: \n "
" \n Generate 11 blocks \n "
+ HelpExampleCli ( " generate " , " 11 " )
) ;
int nGenerate = params [ 0 ] . get_int ( ) ;
uint64_t nMaxTries = 1000000 ;
if ( params . size ( ) > 1 ) {
nMaxTries = params [ 1 ] . get_int ( ) ;
}
boost : : shared_ptr < CReserveScript > coinbaseScript ;
GetMainSignals ( ) . ScriptForMining ( coinbaseScript ) ;
// If the keypool is exhausted, no script is returned at all. Catch this.
if ( ! coinbaseScript )
throw JSONRPCError ( RPC_WALLET_KEYPOOL_RAN_OUT , " Error: Keypool ran out, please call keypoolrefill first " ) ;
//throw an error if no script was provided
if ( coinbaseScript - > reserveScript . empty ( ) )
throw JSONRPCError ( RPC_INTERNAL_ERROR , " No coinbase script available (mining requires a wallet) " ) ;
return generateBlocks ( coinbaseScript , nGenerate , nMaxTries , true ) ;
}
UniValue generatetoaddress ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) < 2 | | params . size ( ) > 3 )
throw runtime_error (
" generatetoaddress numblocks address (maxtries) \n "
" \n Mine blocks immediately to a specified address (before the RPC call returns) \n "
" \n Arguments: \n "
" 1. numblocks (numeric, required) How many blocks are generated immediately. \n "
" 2. address (string, required) The address to send the newly generated bitcoin to. \n "
" 3. maxtries (numeric, optional) How many iterations to try (default = 1000000). \n "
" \n Result \n "
" [ blockhashes ] (array) hashes of blocks generated \n "
" \n Examples: \n "
" \n Generate 11 blocks to myaddress \n "
+ HelpExampleCli ( " generatetoaddress " , " 11 \" myaddress \" " )
) ;
int nGenerate = params [ 0 ] . get_int ( ) ;
uint64_t nMaxTries = 1000000 ;
if ( params . size ( ) > 2 ) {
nMaxTries = params [ 2 ] . get_int ( ) ;
}
CBitcoinAddress address ( params [ 1 ] . get_str ( ) ) ;
if ( ! address . IsValid ( ) )
throw JSONRPCError ( RPC_INVALID_ADDRESS_OR_KEY , " Error: Invalid address " ) ;
boost : : shared_ptr < CReserveScript > coinbaseScript ( new CReserveScript ( ) ) ;
coinbaseScript - > reserveScript = GetScriptForDestination ( address . Get ( ) ) ;
return generateBlocks ( coinbaseScript , nGenerate , nMaxTries , false ) ;
}
2015-05-18 14:02:18 +02:00
UniValue getmininginfo ( const UniValue & params , bool fHelp )
2012-08-21 08:21:33 +02:00
{
if ( fHelp | | params . size ( ) ! = 0 )
throw runtime_error (
" getmininginfo \n "
2013-10-29 12:29:44 +01:00
" \n Returns a json object containing mining-related information. "
" \n Result: \n "
" { \n "
" \" blocks \" : nnn, (numeric) The current block \n "
" \" currentblocksize \" : nnn, (numeric) The last block size \n "
" \" currentblocktx \" : nnn, (numeric) The last block transaction \n "
" \" difficulty \" : xxx.xxxxx (numeric) The current difficulty \n "
" \" errors \" : \" ... \" (string) Current errors \n "
2017-12-05 23:17:45 +01:00
" \" networkhashps \" : n (numeric) An estimate of the number of hashes per second the network is generating to maintain the current difficulty \n "
2013-10-29 12:29:44 +01:00
" \" pooledtx \" : n (numeric) The size of the mem pool \n "
" \" testnet \" : true|false (boolean) If using testnet or not \n "
2014-06-12 14:52:12 +02:00
" \" chain \" : \" xxxx \" , (string) current network name as defined in BIP70 (main, test, regtest) \n "
2013-10-29 12:29:44 +01:00
" } \n "
" \n Examples: \n "
+ HelpExampleCli ( " getmininginfo " , " " )
+ HelpExampleRpc ( " getmininginfo " , " " )
) ;
2012-08-21 08:21:33 +02:00
2014-10-19 10:46:17 +02:00
LOCK ( cs_main ) ;
2015-05-10 14:48:35 +02:00
UniValue obj ( UniValue : : VOBJ ) ;
2013-10-10 23:07:44 +02:00
obj . push_back ( Pair ( " blocks " , ( int ) chainActive . Height ( ) ) ) ;
2013-04-28 17:37:50 +02:00
obj . push_back ( Pair ( " currentblocksize " , ( uint64_t ) nLastBlockSize ) ) ;
obj . push_back ( Pair ( " currentblocktx " , ( uint64_t ) nLastBlockTx ) ) ;
obj . push_back ( Pair ( " difficulty " , ( double ) GetDifficulty ( ) ) ) ;
obj . push_back ( Pair ( " errors " , GetWarnings ( " statusbar " ) ) ) ;
2013-05-17 12:57:05 +02:00
obj . push_back ( Pair ( " networkhashps " , getnetworkhashps ( params , false ) ) ) ;
2013-04-28 17:37:50 +02:00
obj . push_back ( Pair ( " pooledtx " , ( uint64_t ) mempool . size ( ) ) ) ;
2014-08-31 22:32:52 +02:00
obj . push_back ( Pair ( " testnet " , Params ( ) . TestnetToBeDeprecatedFieldRPC ( ) ) ) ;
2014-06-12 14:52:12 +02:00
obj . push_back ( Pair ( " chain " , Params ( ) . NetworkIDString ( ) ) ) ;
2012-08-21 08:21:33 +02:00
return obj ;
}
2014-12-01 13:51:45 +01:00
// NOTE: Unlike wallet RPC (which use BTC values), mining RPCs follow GBT (BIP 22) in using satoshi amounts
2015-05-18 14:02:18 +02:00
UniValue prioritisetransaction ( const UniValue & params , bool fHelp )
2012-08-21 08:21:33 +02:00
{
2012-07-11 20:52:41 +02:00
if ( fHelp | | params . size ( ) ! = 3 )
2012-08-21 08:21:33 +02:00
throw runtime_error (
2012-07-11 20:52:41 +02:00
" prioritisetransaction <txid> <priority delta> <fee delta> \n "
2014-07-15 02:11:55 +02:00
" Accepts the transaction into mined blocks at a higher (or lower) priority \n "
2013-10-29 12:29:44 +01:00
" \n Arguments: \n "
2014-07-15 02:11:55 +02:00
" 1. \" txid \" (string, required) The transaction id. \n "
" 2. priority delta (numeric, required) The priority to add or subtract. \n "
" The transaction selection algorithm considers the tx as it would have a higher priority. \n "
2015-07-07 00:40:38 +02:00
" (priority of a transaction is calculated: coinage * value_in_duffs / txsize) \n "
" 3. fee delta (numeric, required) The fee value (in duffs) to add (or subtract, if negative). \n "
2014-07-15 02:11:55 +02:00
" The fee is not actually paid, only the algorithm for selecting transactions into a block \n "
" considers the transaction as it would have paid a higher (or lower) fee. \n "
" \n Result \n "
" true (boolean) Returns true \n "
2013-10-29 12:29:44 +01:00
" \n Examples: \n "
2014-12-01 13:51:45 +01:00
+ HelpExampleCli ( " prioritisetransaction " , " \" txid \" 0.0 10000 " )
+ HelpExampleRpc ( " prioritisetransaction " , " \" txid \" , 0.0, 10000 " )
2013-10-29 12:29:44 +01:00
) ;
2012-08-21 08:21:33 +02:00
2014-10-19 10:46:17 +02:00
LOCK ( cs_main ) ;
2014-12-17 10:34:09 +01:00
uint256 hash = ParseHashStr ( params [ 0 ] . get_str ( ) , " txid " ) ;
2014-12-01 13:51:45 +01:00
CAmount nAmount = params [ 2 ] . get_int64 ( ) ;
2012-08-21 08:21:33 +02:00
2014-07-15 02:11:55 +02:00
mempool . PrioritiseTransaction ( hash , params [ 0 ] . get_str ( ) , params [ 1 ] . get_real ( ) , nAmount ) ;
2012-07-11 20:52:41 +02:00
return true ;
}
2012-08-21 08:21:33 +02:00
2014-10-30 03:56:33 +01:00
// NOTE: Assumes a conclusive result; if result is inconclusive, it must be handled by caller
2015-05-13 21:29:19 +02:00
static UniValue BIP22ValidationResult ( const CValidationState & state )
2014-10-30 03:56:33 +01:00
{
if ( state . IsValid ( ) )
2015-05-18 14:02:18 +02:00
return NullUniValue ;
2012-08-21 08:21:33 +02:00
2014-10-30 03:56:33 +01:00
std : : string strRejectReason = state . GetRejectReason ( ) ;
if ( state . IsError ( ) )
throw JSONRPCError ( RPC_VERIFY_ERROR , strRejectReason ) ;
if ( state . IsInvalid ( ) )
2012-08-21 08:21:33 +02:00
{
2014-10-30 03:56:33 +01:00
if ( strRejectReason . empty ( ) )
return " rejected " ;
return strRejectReason ;
2012-08-21 08:21:33 +02:00
}
2014-10-30 03:56:33 +01:00
// Should be impossible
return " valid? " ;
2012-08-21 08:21:33 +02:00
}
2017-04-11 12:53:54 +02:00
std : : string gbt_vb_name ( const Consensus : : DeploymentPos pos ) {
const struct BIP9DeploymentInfo & vbinfo = VersionBitsDeploymentInfo [ pos ] ;
std : : string s = vbinfo . name ;
if ( ! vbinfo . gbt_force ) {
s . insert ( s . begin ( ) , ' ! ' ) ;
}
return s ;
}
2015-05-18 14:02:18 +02:00
UniValue getblocktemplate ( const UniValue & params , bool fHelp )
2012-08-21 08:21:33 +02:00
{
2012-10-24 18:39:46 +02:00
if ( fHelp | | params . size ( ) > 1 )
2012-08-21 08:21:33 +02:00
throw runtime_error (
2013-10-29 12:29:44 +01:00
" getblocktemplate ( \" jsonrequestobject \" ) \n "
" \n If the request parameters include a 'mode' key, that is used to explicitly select between the default 'template' request or a 'proposal'. \n "
" It returns data needed to construct a block to work on. \n "
2017-04-11 12:53:54 +02:00
" For full specification, see BIPs 22 and 9: \n "
" https://github.com/bitcoin/bips/blob/master/bip-0022.mediawiki \n "
" https://github.com/bitcoin/bips/blob/master/bip-0009.mediawiki#getblocktemplate_changes \n "
2013-10-29 12:29:44 +01:00
" \n Arguments: \n "
" 1. \" jsonrequestobject \" (string, optional) A json object in the following spec \n "
" { \n "
" \" mode \" : \" template \" (string, optional) This must be set to \" template \" or omitted \n "
" \" capabilities \" :[ (array, optional) A list of strings \n "
" \" support \" (string) client side supported feature, 'longpoll', 'coinbasetxn', 'coinbasevalue', 'proposal', 'serverlist', 'workid' \n "
" ,... \n "
" ] \n "
" } \n "
" \n "
" \n Result: \n "
" { \n "
2017-12-05 23:17:45 +01:00
" \" capabilities \" : [ \" capability \" , ... ], (array of strings) specific client side supported features \n "
2013-10-29 12:29:44 +01:00
" \" version \" : n, (numeric) The block version \n "
2017-04-11 12:53:54 +02:00
" \" rules \" : [ \" rulename \" , ... ], (array of strings) specific block rules that are to be enforced \n "
" \" vbavailable \" : { (json object) set of pending, supported versionbit (BIP 9) softfork deployments \n "
" \" rulename \" : bitnumber (numeric) identifies the bit number as indicating acceptance and readiness for the named softfork rule \n "
" ,... \n "
" }, \n "
" \" vbrequired \" : n, (numeric) bit mask of versionbits the server requires set in submissions \n "
2013-10-29 12:29:44 +01:00
" \" previousblockhash \" : \" xxxx \" , (string) The hash of current highest block \n "
" \" transactions \" : [ (array) contents of non-coinbase transactions that should be included in the next block \n "
" { \n "
" \" data \" : \" xxxx \" , (string) transaction data encoded in hexadecimal (byte-for-byte) \n "
" \" hash \" : \" xxxx \" , (string) hash/id encoded in little-endian hexadecimal \n "
" \" depends \" : [ (array) array of numbers \n "
" n (numeric) transactions before this one (by 1-based index in 'transactions' list) that must be present in the final block if this one is \n "
" ,... \n "
" ], \n "
2015-07-07 00:40:38 +02:00
" \" fee \" : n, (numeric) difference in value between transaction inputs and outputs (in duffs); for coinbase transactions, this is a negative Number of the total collected block fees (ie, not including the block subsidy); if key is not present, fee is unknown and clients MUST NOT assume there isn't one \n "
2013-10-29 12:29:44 +01:00
" \" sigops \" : n, (numeric) total number of SigOps, as counted for purposes of block limits; if key is not present, sigop count is unknown and clients MUST NOT assume there aren't any \n "
" \" required \" : true|false (boolean) if provided and true, this transaction must be in the final block \n "
" } \n "
" ,... \n "
" ], \n "
" \" coinbaseaux \" : { (json object) data that should be included in the coinbase's scriptSig content \n "
" \" flags \" : \" flags \" (string) \n "
" }, \n "
2015-07-07 00:40:38 +02:00
" \" coinbasevalue \" : n, (numeric) maximum allowable input to coinbase transaction, including the generation award and transaction fees (in duffs) \n "
2013-10-29 12:29:44 +01:00
" \" coinbasetxn \" : { ... }, (json object) information for coinbase transaction \n "
" \" target \" : \" xxxx \" , (string) The hash target \n "
" \" mintime \" : xxx, (numeric) The minimum timestamp appropriate for next block time in seconds since epoch (Jan 1 1970 GMT) \n "
" \" mutable \" : [ (array of string) list of ways the block template may be changed \n "
" \" value \" (string) A way the block template may be changed, e.g. 'time', 'transactions', 'prevblock' \n "
" ,... \n "
" ], \n "
" \" noncerange \" : \" 00000000ffffffff \" , (string) A range of valid nonces \n "
" \" sigoplimit \" : n, (numeric) limit of sigops in blocks \n "
" \" sizelimit \" : n, (numeric) limit of block size \n "
" \" curtime \" : ttt, (numeric) current timestamp in seconds since epoch (Jan 1 1970 GMT) \n "
" \" bits \" : \" xxx \" , (string) compressed target of next block \n "
" \" height \" : n (numeric) The height of the next block \n "
2016-08-28 12:11:36 +02:00
" \" masternode \" : { (json object) required masternode payee that must be included in the next block \n "
" \" payee \" : \" xxxx \" , (string) payee address \n "
" \" script \" : \" xxxx \" , (string) payee scriptPubKey \n "
" \" amount \" : n (numeric) required amount to pay \n "
" }, \n "
" \" masternode_payments_started \" : true|false, (boolean) true, if masternode payments started \n "
" \" masternode_payments_enforced \" : true|false, (boolean) true, if masternode payments are enforced \n "
" \" superblock \" : [ (array) required superblock payees that must be included in the next block \n "
" { \n "
" \" payee \" : \" xxxx \" , (string) payee address \n "
" \" script \" : \" xxxx \" , (string) payee scriptPubKey \n "
" \" amount \" : n (numeric) required amount to pay \n "
" } \n "
" ,... \n "
" ], \n "
" \" superblocks_started \" : true|false, (boolean) true, if superblock payments started \n "
" \" superblocks_enabled \" : true|false (boolean) true, if superblock payments are enabled \n "
2013-10-29 12:29:44 +01:00
" } \n "
" \n Examples: \n "
+ HelpExampleCli ( " getblocktemplate " , " " )
+ HelpExampleRpc ( " getblocktemplate " , " " )
) ;
2012-08-21 08:21:33 +02:00
2014-10-19 10:46:17 +02:00
LOCK ( cs_main ) ;
2012-08-21 08:21:33 +02:00
std : : string strMode = " template " ;
2015-05-13 21:29:19 +02:00
UniValue lpval = NullUniValue ;
2017-04-11 12:53:54 +02:00
std : : set < std : : string > setClientRules ;
int64_t nMaxVersionPreVB = - 1 ;
2012-08-21 08:21:33 +02:00
if ( params . size ( ) > 0 )
{
2015-05-18 14:02:18 +02:00
const UniValue & oparam = params [ 0 ] . get_obj ( ) ;
const UniValue & modeval = find_value ( oparam , " mode " ) ;
2014-08-20 21:15:16 +02:00
if ( modeval . isStr ( ) )
2012-08-21 08:21:33 +02:00
strMode = modeval . get_str ( ) ;
2014-08-20 21:15:16 +02:00
else if ( modeval . isNull ( ) )
2012-09-01 09:12:50 +02:00
{
/* Do nothing */
}
2012-08-21 08:21:33 +02:00
else
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Invalid mode " ) ;
2012-05-13 06:43:24 +02:00
lpval = find_value ( oparam , " longpollid " ) ;
2012-09-10 04:55:03 +02:00
if ( strMode = = " proposal " )
{
2015-05-18 14:02:18 +02:00
const UniValue & dataval = find_value ( oparam , " data " ) ;
2015-06-04 21:39:44 +02:00
if ( ! dataval . isStr ( ) )
2012-09-10 04:55:03 +02:00
throw JSONRPCError ( RPC_TYPE_ERROR , " Missing data String key for proposal " ) ;
CBlock block ;
if ( ! DecodeHexBlk ( block , dataval . get_str ( ) ) )
throw JSONRPCError ( RPC_DESERIALIZATION_ERROR , " Block decode failed " ) ;
uint256 hash = block . GetHash ( ) ;
BlockMap : : iterator mi = mapBlockIndex . find ( hash ) ;
if ( mi ! = mapBlockIndex . end ( ) ) {
CBlockIndex * pindex = mi - > second ;
if ( pindex - > IsValid ( BLOCK_VALID_SCRIPTS ) )
return " duplicate " ;
if ( pindex - > nStatus & BLOCK_FAILED_MASK )
return " duplicate-invalid " ;
return " duplicate-inconclusive " ;
}
CBlockIndex * const pindexPrev = chainActive . Tip ( ) ;
// TestBlockValidity only supports blocks built on the current Tip
if ( block . hashPrevBlock ! = pindexPrev - > GetBlockHash ( ) )
return " inconclusive-not-best-prevblk " ;
CValidationState state ;
2015-04-20 00:17:11 +02:00
TestBlockValidity ( state , Params ( ) , block , pindexPrev , false , true ) ;
2012-09-10 04:55:03 +02:00
return BIP22ValidationResult ( state ) ;
}
2017-04-11 12:53:54 +02:00
const UniValue & aClientRules = find_value ( oparam , " rules " ) ;
if ( aClientRules . isArray ( ) ) {
for ( unsigned int i = 0 ; i < aClientRules . size ( ) ; + + i ) {
const UniValue & v = aClientRules [ i ] ;
setClientRules . insert ( v . get_str ( ) ) ;
}
} else {
// NOTE: It is important that this NOT be read if versionbits is supported
const UniValue & uvMaxVersion = find_value ( oparam , " maxversion " ) ;
if ( uvMaxVersion . isNum ( ) ) {
nMaxVersionPreVB = uvMaxVersion . get_int64 ( ) ;
}
}
2012-08-21 08:21:33 +02:00
}
if ( strMode ! = " template " )
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Invalid mode " ) ;
2012-08-21 08:21:33 +02:00
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
if ( ! g_connman )
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
if ( g_connman - > GetNodeCount ( CConnman : : CONNECTIONS_ALL ) = = 0 )
2016-07-29 07:30:19 +02:00
throw JSONRPCError ( RPC_CLIENT_NOT_CONNECTED , " Dash Core is not connected! " ) ;
2012-08-21 08:21:33 +02:00
2015-08-13 18:38:23 +02:00
if ( IsInitialBlockDownload ( ) )
2016-07-29 07:30:19 +02:00
throw JSONRPCError ( RPC_CLIENT_IN_INITIAL_DOWNLOAD , " Dash Core is downloading blocks... " ) ;
2012-08-21 08:21:33 +02:00
2017-12-01 06:14:57 +01:00
// when enforcement is on we need information about a masternode payee or otherwise our block is going to be orphaned by the network
CScript payee ;
if ( sporkManager . IsSporkActive ( SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT )
& & ! masternodeSync . IsWinnersListSynced ( )
& & ! mnpayments . GetBlockPayee ( chainActive . Height ( ) + 1 , payee ) )
throw JSONRPCError ( RPC_CLIENT_IN_INITIAL_DOWNLOAD , " Dash Core is downloading masternode winners... " ) ;
// next bock is a superblock and we need governance info to correctly construct it
if ( sporkManager . IsSporkActive ( SPORK_9_SUPERBLOCKS_ENABLED )
& & ! masternodeSync . IsSynced ( )
& & CSuperblock : : IsValidBlockHeight ( chainActive . Height ( ) + 1 ) )
throw JSONRPCError ( RPC_CLIENT_IN_INITIAL_DOWNLOAD , " Dash Core is syncing with network... " ) ;
2017-01-01 11:18:33 +01:00
2012-08-21 08:21:33 +02:00
static unsigned int nTransactionsUpdatedLast ;
2012-05-13 06:43:24 +02:00
2014-08-20 21:15:16 +02:00
if ( ! lpval . isNull ( ) )
2012-05-13 06:43:24 +02:00
{
// Wait to respond until either the best block changes, OR a minute has passed and there are more transactions
uint256 hashWatchedChain ;
boost : : system_time checktxtime ;
unsigned int nTransactionsUpdatedLastLP ;
2014-08-20 21:15:16 +02:00
if ( lpval . isStr ( ) )
2012-05-13 06:43:24 +02:00
{
// Format: <hashBestChain><nTransactionsUpdatedLast>
std : : string lpstr = lpval . get_str ( ) ;
hashWatchedChain . SetHex ( lpstr . substr ( 0 , 64 ) ) ;
nTransactionsUpdatedLastLP = atoi64 ( lpstr . substr ( 64 ) ) ;
}
else
{
// NOTE: Spec does not specify behaviour for non-string longpollid, but this makes testing easier
hashWatchedChain = chainActive . Tip ( ) - > GetBlockHash ( ) ;
nTransactionsUpdatedLastLP = nTransactionsUpdatedLast ;
}
// Release the wallet and main lock while waiting
LEAVE_CRITICAL_SECTION ( cs_main ) ;
{
checktxtime = boost : : get_system_time ( ) + boost : : posix_time : : minutes ( 1 ) ;
boost : : unique_lock < boost : : mutex > lock ( csBestBlock ) ;
while ( chainActive . Tip ( ) - > GetBlockHash ( ) = = hashWatchedChain & & IsRPCRunning ( ) )
{
if ( ! cvBlockChange . timed_wait ( lock , checktxtime ) )
{
// Timeout: Check transactions for update
if ( mempool . GetTransactionsUpdated ( ) ! = nTransactionsUpdatedLastLP )
break ;
checktxtime + = boost : : posix_time : : seconds ( 10 ) ;
}
}
}
ENTER_CRITICAL_SECTION ( cs_main ) ;
if ( ! IsRPCRunning ( ) )
throw JSONRPCError ( RPC_CLIENT_NOT_CONNECTED , " Shutting down " ) ;
// TODO: Maybe recheck connections/IBD and (if something wrong) send an expires-immediately template to stop miners?
}
// Update block
2012-08-21 08:21:33 +02:00
static CBlockIndex * pindexPrev ;
2013-04-13 07:13:08 +02:00
static int64_t nStart ;
2012-12-19 21:21:21 +01:00
static CBlockTemplate * pblocktemplate ;
2013-10-10 23:07:44 +02:00
if ( pindexPrev ! = chainActive . Tip ( ) | |
2013-08-27 07:51:57 +02:00
( mempool . GetTransactionsUpdated ( ) ! = nTransactionsUpdatedLast & & GetTime ( ) - nStart > 5 ) )
2012-08-21 08:21:33 +02:00
{
// Clear pindexPrev so future calls make a new block, despite any failures from here on
pindexPrev = NULL ;
2014-12-09 02:17:57 +01:00
// Store the chainActive.Tip() used before CreateNewBlock, to avoid races
2013-08-27 07:51:57 +02:00
nTransactionsUpdatedLast = mempool . GetTransactionsUpdated ( ) ;
2013-10-10 23:07:44 +02:00
CBlockIndex * pindexPrevNew = chainActive . Tip ( ) ;
2012-08-21 08:21:33 +02:00
nStart = GetTime ( ) ;
// Create new block
2012-12-19 21:21:21 +01:00
if ( pblocktemplate )
2012-08-21 08:21:33 +02:00
{
2012-12-19 21:21:21 +01:00
delete pblocktemplate ;
pblocktemplate = NULL ;
2012-08-21 08:21:33 +02:00
}
2013-08-24 06:45:17 +02:00
CScript scriptDummy = CScript ( ) < < OP_TRUE ;
2016-06-13 11:27:11 +02:00
pblocktemplate = BlockAssembler ( Params ( ) ) . CreateNewBlock ( scriptDummy ) ;
2012-12-19 21:21:21 +01:00
if ( ! pblocktemplate )
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_OUT_OF_MEMORY , " Out of memory " ) ;
2012-08-21 08:21:33 +02:00
// Need to update only after we know CreateNewBlock succeeded
pindexPrev = pindexPrevNew ;
}
2012-12-19 21:21:21 +01:00
CBlock * pblock = & pblocktemplate - > block ; // pointer for convenience
2017-04-11 12:53:54 +02:00
const Consensus : : Params & consensusParams = Params ( ) . GetConsensus ( ) ;
2012-08-21 08:21:33 +02:00
// Update nTime
2017-04-11 12:53:54 +02:00
UpdateTime ( pblock , consensusParams , pindexPrev ) ;
2012-08-21 08:21:33 +02:00
pblock - > nNonce = 0 ;
2015-05-10 14:48:35 +02:00
UniValue aCaps ( UniValue : : VARR ) ; aCaps . push_back ( " proposal " ) ;
2012-09-10 04:55:03 +02:00
2015-05-10 14:48:35 +02:00
UniValue transactions ( UniValue : : VARR ) ;
2012-08-21 08:21:33 +02:00
map < uint256 , int64_t > setTxIndex ;
int i = 0 ;
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const CTransaction & tx , pblock - > vtx ) {
2012-08-21 08:21:33 +02:00
uint256 txHash = tx . GetHash ( ) ;
setTxIndex [ txHash ] = i + + ;
if ( tx . IsCoinBase ( ) )
continue ;
2015-05-10 14:48:35 +02:00
UniValue entry ( UniValue : : VOBJ ) ;
2012-08-21 08:21:33 +02:00
2014-06-24 05:10:24 +02:00
entry . push_back ( Pair ( " data " , EncodeHexTx ( tx ) ) ) ;
2012-08-21 08:21:33 +02:00
entry . push_back ( Pair ( " hash " , txHash . GetHex ( ) ) ) ;
2015-05-10 14:48:35 +02:00
UniValue deps ( UniValue : : VARR ) ;
Ultraprune
This switches bitcoin's transaction/block verification logic to use a
"coin database", which contains all unredeemed transaction output scripts,
amounts and heights.
The name ultraprune comes from the fact that instead of a full transaction
index, we only (need to) keep an index with unspent outputs. For now, the
blocks themselves are kept as usual, although they are only necessary for
serving, rescanning and reorganizing.
The basic datastructures are CCoins (representing the coins of a single
transaction), and CCoinsView (representing a state of the coins database).
There are several implementations for CCoinsView. A dummy, one backed by
the coins database (coins.dat), one backed by the memory pool, and one
that adds a cache on top of it. FetchInputs, ConnectInputs, ConnectBlock,
DisconnectBlock, ... now operate on a generic CCoinsView.
The block switching logic now builds a single cached CCoinsView with
changes to be committed to the database before any changes are made.
This means no uncommitted changes are ever read from the database, and
should ease the transition to another database layer which does not
support transactions (but does support atomic writes), like LevelDB.
For the getrawtransaction() RPC call, access to a txid-to-disk index
would be preferable. As this index is not necessary or even useful
for any other part of the implementation, it is not provided. Instead,
getrawtransaction() uses the coin database to find the block height,
and then scans that block to find the requested transaction. This is
slow, but should suffice for debug purposes.
2012-07-01 18:54:00 +02:00
BOOST_FOREACH ( const CTxIn & in , tx . vin )
2012-08-21 08:21:33 +02:00
{
Ultraprune
This switches bitcoin's transaction/block verification logic to use a
"coin database", which contains all unredeemed transaction output scripts,
amounts and heights.
The name ultraprune comes from the fact that instead of a full transaction
index, we only (need to) keep an index with unspent outputs. For now, the
blocks themselves are kept as usual, although they are only necessary for
serving, rescanning and reorganizing.
The basic datastructures are CCoins (representing the coins of a single
transaction), and CCoinsView (representing a state of the coins database).
There are several implementations for CCoinsView. A dummy, one backed by
the coins database (coins.dat), one backed by the memory pool, and one
that adds a cache on top of it. FetchInputs, ConnectInputs, ConnectBlock,
DisconnectBlock, ... now operate on a generic CCoinsView.
The block switching logic now builds a single cached CCoinsView with
changes to be committed to the database before any changes are made.
This means no uncommitted changes are ever read from the database, and
should ease the transition to another database layer which does not
support transactions (but does support atomic writes), like LevelDB.
For the getrawtransaction() RPC call, access to a txid-to-disk index
would be preferable. As this index is not necessary or even useful
for any other part of the implementation, it is not provided. Instead,
getrawtransaction() uses the coin database to find the block height,
and then scans that block to find the requested transaction. This is
slow, but should suffice for debug purposes.
2012-07-01 18:54:00 +02:00
if ( setTxIndex . count ( in . prevout . hash ) )
deps . push_back ( setTxIndex [ in . prevout . hash ] ) ;
}
entry . push_back ( Pair ( " depends " , deps ) ) ;
2012-08-21 08:21:33 +02:00
2013-02-08 00:54:22 +01:00
int index_in_template = i - 1 ;
2013-01-04 05:58:36 +01:00
entry . push_back ( Pair ( " fee " , pblocktemplate - > vTxFees [ index_in_template ] ) ) ;
entry . push_back ( Pair ( " sigops " , pblocktemplate - > vTxSigOps [ index_in_template ] ) ) ;
2012-08-21 08:21:33 +02:00
transactions . push_back ( entry ) ;
}
2015-05-10 14:48:35 +02:00
UniValue aux ( UniValue : : VOBJ ) ;
2012-08-21 08:21:33 +02:00
aux . push_back ( Pair ( " flags " , HexStr ( COINBASE_FLAGS . begin ( ) , COINBASE_FLAGS . end ( ) ) ) ) ;
2014-12-16 15:43:03 +01:00
arith_uint256 hashTarget = arith_uint256 ( ) . SetCompact ( pblock - > nBits ) ;
2012-08-21 08:21:33 +02:00
2017-04-11 12:53:54 +02:00
UniValue aMutable ( UniValue : : VARR ) ;
aMutable . push_back ( " time " ) ;
aMutable . push_back ( " transactions " ) ;
aMutable . push_back ( " prevblock " ) ;
2012-08-21 08:21:33 +02:00
2015-05-10 14:48:35 +02:00
UniValue result ( UniValue : : VOBJ ) ;
2012-09-10 04:55:03 +02:00
result . push_back ( Pair ( " capabilities " , aCaps ) ) ;
2017-04-11 12:53:54 +02:00
UniValue aRules ( UniValue : : VARR ) ;
UniValue vbavailable ( UniValue : : VOBJ ) ;
for ( int i = 0 ; i < ( int ) Consensus : : MAX_VERSION_BITS_DEPLOYMENTS ; + + i ) {
Consensus : : DeploymentPos pos = Consensus : : DeploymentPos ( i ) ;
ThresholdState state = VersionBitsState ( pindexPrev , consensusParams , pos , versionbitscache ) ;
switch ( state ) {
case THRESHOLD_DEFINED :
case THRESHOLD_FAILED :
// Not exposed to GBT at all
break ;
case THRESHOLD_LOCKED_IN :
// Ensure bit is set in block version
pblock - > nVersion | = VersionBitsMask ( consensusParams , pos ) ;
// FALL THROUGH to get vbavailable set...
case THRESHOLD_STARTED :
{
const struct BIP9DeploymentInfo & vbinfo = VersionBitsDeploymentInfo [ pos ] ;
vbavailable . push_back ( Pair ( gbt_vb_name ( pos ) , consensusParams . vDeployments [ pos ] . bit ) ) ;
if ( setClientRules . find ( vbinfo . name ) = = setClientRules . end ( ) ) {
if ( ! vbinfo . gbt_force ) {
// If the client doesn't support this, don't indicate it in the [default] version
pblock - > nVersion & = ~ VersionBitsMask ( consensusParams , pos ) ;
}
}
break ;
}
case THRESHOLD_ACTIVE :
{
// Add to rules only
const struct BIP9DeploymentInfo & vbinfo = VersionBitsDeploymentInfo [ pos ] ;
aRules . push_back ( gbt_vb_name ( pos ) ) ;
if ( setClientRules . find ( vbinfo . name ) = = setClientRules . end ( ) ) {
// Not supported by the client; make sure it's safe to proceed
if ( ! vbinfo . gbt_force ) {
// If we do anything other than throw an exception here, be sure version/force isn't sent to old clients
throw JSONRPCError ( RPC_INVALID_PARAMETER , strprintf ( " Support for '%s' rule requires explicit client support " , vbinfo . name ) ) ;
}
}
break ;
}
}
}
2012-08-21 08:21:33 +02:00
result . push_back ( Pair ( " version " , pblock - > nVersion ) ) ;
2017-04-11 12:53:54 +02:00
result . push_back ( Pair ( " rules " , aRules ) ) ;
result . push_back ( Pair ( " vbavailable " , vbavailable ) ) ;
result . push_back ( Pair ( " vbrequired " , int ( 0 ) ) ) ;
if ( nMaxVersionPreVB > = 2 ) {
// If VB is supported by the client, nMaxVersionPreVB is -1, so we won't get here
// Because BIP 34 changed how the generation transaction is serialised, we can only use version/force back to v2 blocks
// This is safe to do [otherwise-]unconditionally only because we are throwing an exception above if a non-force deployment gets activated
// Note that this can probably also be removed entirely after the first BIP9 non-force deployment (ie, probably segwit) gets activated
aMutable . push_back ( " version/force " ) ;
}
2012-08-21 08:21:33 +02:00
result . push_back ( Pair ( " previousblockhash " , pblock - > hashPrevBlock . GetHex ( ) ) ) ;
result . push_back ( Pair ( " transactions " , transactions ) ) ;
result . push_back ( Pair ( " coinbaseaux " , aux ) ) ;
2015-04-05 00:57:25 +02:00
result . push_back ( Pair ( " coinbasevalue " , ( int64_t ) pblock - > vtx [ 0 ] . GetValueOut ( ) ) ) ;
2012-05-13 06:43:24 +02:00
result . push_back ( Pair ( " longpollid " , chainActive . Tip ( ) - > GetBlockHash ( ) . GetHex ( ) + i64tostr ( nTransactionsUpdatedLast ) ) ) ;
2012-08-21 08:21:33 +02:00
result . push_back ( Pair ( " target " , hashTarget . GetHex ( ) ) ) ;
result . push_back ( Pair ( " mintime " , ( int64_t ) pindexPrev - > GetMedianTimePast ( ) + 1 ) ) ;
result . push_back ( Pair ( " mutable " , aMutable ) ) ;
result . push_back ( Pair ( " noncerange " , " 00000000ffffffff " ) ) ;
2017-09-11 16:13:30 +02:00
result . push_back ( Pair ( " sigoplimit " , ( int64_t ) MaxBlockSigOps ( fDIP0001ActiveAtTip ) ) ) ;
result . push_back ( Pair ( " sizelimit " , ( int64_t ) MaxBlockSize ( fDIP0001ActiveAtTip ) ) ) ;
2014-06-28 23:36:06 +02:00
result . push_back ( Pair ( " curtime " , pblock - > GetBlockTime ( ) ) ) ;
2014-06-27 13:28:08 +02:00
result . push_back ( Pair ( " bits " , strprintf ( " %08x " , pblock - > nBits ) ) ) ;
2012-08-21 08:21:33 +02:00
result . push_back ( Pair ( " height " , ( int64_t ) ( pindexPrev - > nHeight + 1 ) ) ) ;
2015-01-08 19:02:10 +01:00
2016-08-28 12:11:36 +02:00
UniValue masternodeObj ( UniValue : : VOBJ ) ;
if ( pblock - > txoutMasternode ! = CTxOut ( ) ) {
2015-01-08 19:02:10 +01:00
CTxDestination address1 ;
2016-08-28 12:11:36 +02:00
ExtractDestination ( pblock - > txoutMasternode . scriptPubKey , address1 ) ;
2015-01-08 19:02:10 +01:00
CBitcoinAddress address2 ( address1 ) ;
2016-08-28 12:11:36 +02:00
masternodeObj . push_back ( Pair ( " payee " , address2 . ToString ( ) . c_str ( ) ) ) ;
masternodeObj . push_back ( Pair ( " script " , HexStr ( pblock - > txoutMasternode . scriptPubKey . begin ( ) , pblock - > txoutMasternode . scriptPubKey . end ( ) ) ) ) ;
masternodeObj . push_back ( Pair ( " amount " , pblock - > txoutMasternode . nValue ) ) ;
2015-01-08 19:02:10 +01:00
}
2016-08-28 12:11:36 +02:00
result . push_back ( Pair ( " masternode " , masternodeObj ) ) ;
result . push_back ( Pair ( " masternode_payments_started " , pindexPrev - > nHeight + 1 > Params ( ) . GetConsensus ( ) . nMasternodePaymentsStartBlock ) ) ;
result . push_back ( Pair ( " masternode_payments_enforced " , sporkManager . IsSporkActive ( SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT ) ) ) ;
UniValue superblockObjArray ( UniValue : : VARR ) ;
if ( pblock - > voutSuperblock . size ( ) ) {
BOOST_FOREACH ( const CTxOut & txout , pblock - > voutSuperblock ) {
UniValue entry ( UniValue : : VOBJ ) ;
CTxDestination address1 ;
ExtractDestination ( txout . scriptPubKey , address1 ) ;
CBitcoinAddress address2 ( address1 ) ;
entry . push_back ( Pair ( " payee " , address2 . ToString ( ) . c_str ( ) ) ) ;
entry . push_back ( Pair ( " script " , HexStr ( txout . scriptPubKey . begin ( ) , txout . scriptPubKey . end ( ) ) ) ) ;
entry . push_back ( Pair ( " amount " , txout . nValue ) ) ;
superblockObjArray . push_back ( entry ) ;
}
}
result . push_back ( Pair ( " superblock " , superblockObjArray ) ) ;
result . push_back ( Pair ( " superblocks_started " , pindexPrev - > nHeight + 1 > Params ( ) . GetConsensus ( ) . nSuperblockStartBlock ) ) ;
2016-08-29 21:16:02 +02:00
result . push_back ( Pair ( " superblocks_enabled " , sporkManager . IsSporkActive ( SPORK_9_SUPERBLOCKS_ENABLED ) ) ) ;
2012-08-21 08:21:33 +02:00
return result ;
}
2014-10-20 06:18:00 +02:00
class submitblock_StateCatcher : public CValidationInterface
{
public :
uint256 hash ;
bool found ;
CValidationState state ;
submitblock_StateCatcher ( const uint256 & hashIn ) : hash ( hashIn ) , found ( false ) , state ( ) { } ;
protected :
virtual void BlockChecked ( const CBlock & block , const CValidationState & stateIn ) {
if ( block . GetHash ( ) ! = hash )
return ;
found = true ;
state = stateIn ;
} ;
} ;
2015-05-18 14:02:18 +02:00
UniValue submitblock ( const UniValue & params , bool fHelp )
2012-08-21 08:21:33 +02:00
{
if ( fHelp | | params . size ( ) < 1 | | params . size ( ) > 2 )
throw runtime_error (
2013-10-29 12:29:44 +01:00
" submitblock \" hexdata \" ( \" jsonparametersobject \" ) \n "
" \n Attempts to submit new block to network. \n "
" The 'jsonparametersobject' parameter is currently ignored. \n "
" See https://en.bitcoin.it/wiki/BIP_0022 for full specification. \n "
" \n Arguments \n "
" 1. \" hexdata \" (string, required) the hex-encoded block data to submit \n "
" 2. \" jsonparametersobject \" (string, optional) object of optional parameters \n "
" { \n "
" \" workid \" : \" id \" (string, optional) if the server provided a workid, it MUST be included with submissions \n "
" } \n "
" \n Result: \n "
" \n Examples: \n "
+ HelpExampleCli ( " submitblock " , " \" mydata \" " )
+ HelpExampleRpc ( " submitblock " , " \" mydata \" " )
) ;
2012-08-21 08:21:33 +02:00
2014-11-18 20:09:20 +01:00
CBlock block ;
if ( ! DecodeHexBlk ( block , params [ 0 ] . get_str ( ) ) )
2012-10-04 09:34:44 +02:00
throw JSONRPCError ( RPC_DESERIALIZATION_ERROR , " Block decode failed " ) ;
2012-08-21 08:21:33 +02:00
2014-11-18 20:09:20 +01:00
uint256 hash = block . GetHash ( ) ;
2015-04-13 18:55:41 +02:00
bool fBlockPresent = false ;
{
LOCK ( cs_main ) ;
BlockMap : : iterator mi = mapBlockIndex . find ( hash ) ;
if ( mi ! = mapBlockIndex . end ( ) ) {
CBlockIndex * pindex = mi - > second ;
if ( pindex - > IsValid ( BLOCK_VALID_SCRIPTS ) )
return " duplicate " ;
if ( pindex - > nStatus & BLOCK_FAILED_MASK )
return " duplicate-invalid " ;
// Otherwise, we might only have the header - process the block before returning
fBlockPresent = true ;
}
2012-08-21 08:21:33 +02:00
}
2014-11-18 20:09:20 +01:00
submitblock_StateCatcher sc ( block . GetHash ( ) ) ;
2014-10-20 06:18:00 +02:00
RegisterValidationInterface ( & sc ) ;
2017-08-02 20:35:04 +02:00
bool fAccepted = ProcessNewBlock ( Params ( ) , & block , true , NULL , NULL ) ;
2014-10-20 06:18:00 +02:00
UnregisterValidationInterface ( & sc ) ;
2015-04-13 18:55:41 +02:00
if ( fBlockPresent )
2014-11-18 20:09:20 +01:00
{
if ( fAccepted & & ! sc . found )
return " duplicate-inconclusive " ;
return " duplicate " ;
}
2017-08-02 20:35:04 +02:00
if ( ! sc . found )
return " inconclusive " ;
return BIP22ValidationResult ( sc . state ) ;
2012-08-21 08:21:33 +02:00
}
2015-05-18 14:02:18 +02:00
UniValue estimatefee ( const UniValue & params , bool fHelp )
2014-03-17 13:19:54 +01:00
{
if ( fHelp | | params . size ( ) ! = 1 )
throw runtime_error (
" estimatefee nblocks \n "
2015-07-08 21:40:14 +02:00
" \n Estimates the approximate fee per kilobyte needed for a transaction to begin \n "
" confirmation within nblocks blocks. \n "
2014-03-17 13:19:54 +01:00
" \n Arguments: \n "
" 1. nblocks (numeric) \n "
" \n Result: \n "
2015-07-08 21:40:14 +02:00
" n (numeric) estimated fee-per-kilobyte \n "
2014-03-17 13:19:54 +01:00
" \n "
2015-07-08 21:40:14 +02:00
" A negative value is returned if not enough transactions and blocks \n "
" have been observed to make an estimate. \n "
2014-03-17 13:19:54 +01:00
" \n Example: \n "
+ HelpExampleCli ( " estimatefee " , " 6 " )
) ;
2014-08-20 21:15:16 +02:00
RPCTypeCheck ( params , boost : : assign : : list_of ( UniValue : : VNUM ) ) ;
2014-03-17 13:19:54 +01:00
int nBlocks = params [ 0 ] . get_int ( ) ;
if ( nBlocks < 1 )
nBlocks = 1 ;
CFeeRate feeRate = mempool . estimateFee ( nBlocks ) ;
if ( feeRate = = CFeeRate ( 0 ) )
return - 1.0 ;
return ValueFromAmount ( feeRate . GetFeePerK ( ) ) ;
}
2015-05-18 14:02:18 +02:00
UniValue estimatepriority ( const UniValue & params , bool fHelp )
2014-03-17 13:19:54 +01:00
{
if ( fHelp | | params . size ( ) ! = 1 )
throw runtime_error (
" estimatepriority nblocks \n "
2015-07-08 21:40:14 +02:00
" \n Estimates the approximate priority a zero-fee transaction needs to begin \n "
" confirmation within nblocks blocks. \n "
2014-03-17 13:19:54 +01:00
" \n Arguments: \n "
" 1. nblocks (numeric) \n "
" \n Result: \n "
2015-07-08 21:40:14 +02:00
" n (numeric) estimated priority \n "
2014-03-17 13:19:54 +01:00
" \n "
2015-07-08 21:40:14 +02:00
" A negative value is returned if not enough transactions and blocks \n "
" have been observed to make an estimate. \n "
2014-03-17 13:19:54 +01:00
" \n Example: \n "
+ HelpExampleCli ( " estimatepriority " , " 6 " )
) ;
2014-08-20 21:15:16 +02:00
RPCTypeCheck ( params , boost : : assign : : list_of ( UniValue : : VNUM ) ) ;
2014-03-17 13:19:54 +01:00
int nBlocks = params [ 0 ] . get_int ( ) ;
if ( nBlocks < 1 )
nBlocks = 1 ;
return mempool . estimatePriority ( nBlocks ) ;
2012-08-21 08:21:33 +02:00
}
2015-11-16 21:26:57 +01:00
UniValue estimatesmartfee ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) ! = 1 )
throw runtime_error (
" estimatesmartfee nblocks \n "
" \n WARNING: This interface is unstable and may disappear or change! \n "
" \n Estimates the approximate fee per kilobyte needed for a transaction to begin \n "
" confirmation within nblocks blocks if possible and return the number of blocks \n "
" for which the estimate is valid. \n "
" \n Arguments: \n "
" 1. nblocks (numeric) \n "
" \n Result: \n "
" { \n "
" \" feerate \" : x.x, (numeric) estimate fee-per-kilobyte (in BTC) \n "
" \" blocks \" : n (numeric) block number where estimate was found \n "
" } \n "
" \n "
" A negative value is returned if not enough transactions and blocks \n "
" have been observed to make an estimate for any number of blocks. \n "
" However it will not return a value below the mempool reject fee. \n "
" \n Example: \n "
+ HelpExampleCli ( " estimatesmartfee " , " 6 " )
) ;
RPCTypeCheck ( params , boost : : assign : : list_of ( UniValue : : VNUM ) ) ;
int nBlocks = params [ 0 ] . get_int ( ) ;
UniValue result ( UniValue : : VOBJ ) ;
int answerFound ;
CFeeRate feeRate = mempool . estimateSmartFee ( nBlocks , & answerFound ) ;
result . push_back ( Pair ( " feerate " , feeRate = = CFeeRate ( 0 ) ? - 1.0 : ValueFromAmount ( feeRate . GetFeePerK ( ) ) ) ) ;
result . push_back ( Pair ( " blocks " , answerFound ) ) ;
return result ;
}
UniValue estimatesmartpriority ( const UniValue & params , bool fHelp )
{
if ( fHelp | | params . size ( ) ! = 1 )
throw runtime_error (
" estimatesmartpriority nblocks \n "
" \n WARNING: This interface is unstable and may disappear or change! \n "
" \n Estimates the approximate priority a zero-fee transaction needs to begin \n "
" confirmation within nblocks blocks if possible and return the number of blocks \n "
" for which the estimate is valid. \n "
" \n Arguments: \n "
" 1. nblocks (numeric) \n "
" \n Result: \n "
" { \n "
" \" priority \" : x.x, (numeric) estimated priority \n "
" \" blocks \" : n (numeric) block number where estimate was found \n "
" } \n "
" \n "
" A negative value is returned if not enough transactions and blocks \n "
" have been observed to make an estimate for any number of blocks. \n "
" However if the mempool reject fee is set it will return 1e9 * MAX_MONEY. \n "
" \n Example: \n "
+ HelpExampleCli ( " estimatesmartpriority " , " 6 " )
) ;
RPCTypeCheck ( params , boost : : assign : : list_of ( UniValue : : VNUM ) ) ;
int nBlocks = params [ 0 ] . get_int ( ) ;
UniValue result ( UniValue : : VOBJ ) ;
int answerFound ;
double priority = mempool . estimateSmartPriority ( nBlocks , & answerFound ) ;
result . push_back ( Pair ( " priority " , priority ) ) ;
result . push_back ( Pair ( " blocks " , answerFound ) ) ;
return result ;
}
2016-03-31 10:55:06 +02:00
static const CRPCCommand commands [ ] =
{ // category name actor (function) okSafeMode
// --------------------- ------------------------ ----------------------- ----------
{ " mining " , " getnetworkhashps " , & getnetworkhashps , true } ,
{ " mining " , " getmininginfo " , & getmininginfo , true } ,
{ " mining " , " prioritisetransaction " , & prioritisetransaction , true } ,
{ " mining " , " getblocktemplate " , & getblocktemplate , true } ,
{ " mining " , " submitblock " , & submitblock , true } ,
{ " generating " , " generate " , & generate , true } ,
{ " generating " , " generatetoaddress " , & generatetoaddress , true } ,
{ " util " , " estimatefee " , & estimatefee , true } ,
{ " util " , " estimatepriority " , & estimatepriority , true } ,
{ " util " , " estimatesmartfee " , & estimatesmartfee , true } ,
{ " util " , " estimatesmartpriority " , & estimatesmartpriority , true } ,
} ;
void RegisterMiningRPCCommands ( CRPCTable & tableRPC )
{
for ( unsigned int vcidx = 0 ; vcidx < ARRAYLEN ( commands ) ; vcidx + + )
tableRPC . appendCommand ( commands [ vcidx ] . name , & commands [ vcidx ] ) ;
}