mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
added nextsuperblocksize command
This commit is contained in:
parent
5da767b9eb
commit
78ebf10ea2
@ -12,6 +12,7 @@
|
|||||||
#include "masternodeconfig.h"
|
#include "masternodeconfig.h"
|
||||||
#include "rpcserver.h"
|
#include "rpcserver.h"
|
||||||
#include "utilmoneystr.h"
|
#include "utilmoneystr.h"
|
||||||
|
#include <boost/lexical_cast.hpp>
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
using namespace json_spirit;
|
using namespace json_spirit;
|
||||||
@ -26,7 +27,7 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
if (fHelp ||
|
if (fHelp ||
|
||||||
(strCommand != "vote-many" && strCommand != "prepare" && strCommand != "submit" &&
|
(strCommand != "vote-many" && strCommand != "prepare" && strCommand != "submit" &&
|
||||||
strCommand != "vote" && strCommand != "getvotes" && strCommand != "getproposal" && strCommand != "getproposalhash" &&
|
strCommand != "vote" && strCommand != "getvotes" && strCommand != "getproposal" && strCommand != "getproposalhash" &&
|
||||||
strCommand != "list" && strCommand != "projection" && strCommand != "check" && strCommand != "nextblock"))
|
strCommand != "list" && strCommand != "projection" && strCommand != "check" && strCommand != "nextblock" && strCommand != "nextsuperblocksize"))
|
||||||
throw runtime_error(
|
throw runtime_error(
|
||||||
"mnbudget \"command\"...\n"
|
"mnbudget \"command\"...\n"
|
||||||
"Manage proposals\n"
|
"Manage proposals\n"
|
||||||
@ -39,6 +40,7 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
" getvotes - Show detailed votes list for proposal\n"
|
" getvotes - Show detailed votes list for proposal\n"
|
||||||
" list - List all proposals\n"
|
" list - List all proposals\n"
|
||||||
" nextblock - Get info about next superblock for budget system\n"
|
" nextblock - Get info about next superblock for budget system\n"
|
||||||
|
" nextsuperblocksize - Get superblock size for a given blockheight\n"
|
||||||
" projection - Show the projection of which proposals will be paid the next cycle\n"
|
" projection - Show the projection of which proposals will be paid the next cycle\n"
|
||||||
" vote - Vote on a proposal by single masternode (using dash.conf setup)\n"
|
" vote - Vote on a proposal by single masternode (using dash.conf setup)\n"
|
||||||
" vote-many - Vote on a proposal by all masternodes (using masternode.conf setup)\n"
|
" vote-many - Vote on a proposal by all masternodes (using masternode.conf setup)\n"
|
||||||
@ -53,6 +55,17 @@ Value mnbudget(const Array& params, bool fHelp)
|
|||||||
return nNext;
|
return nNext;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(strCommand == "nextsuperblocksize")
|
||||||
|
{
|
||||||
|
CBlockIndex* pindexPrev = chainActive.Tip();
|
||||||
|
if(!pindexPrev) return "unknown";
|
||||||
|
|
||||||
|
int nHeight = pindexPrev->nHeight - pindexPrev->nHeight % GetBudgetPaymentCycleBlocks() + GetBudgetPaymentCycleBlocks();
|
||||||
|
|
||||||
|
CAmount nTotal = budget.GetTotalBudget(nHeight);
|
||||||
|
return nTotal;
|
||||||
|
}
|
||||||
|
|
||||||
if(strCommand == "prepare")
|
if(strCommand == "prepare")
|
||||||
{
|
{
|
||||||
if (params.size() != 7)
|
if (params.size() != 7)
|
||||||
|
Loading…
Reference in New Issue
Block a user