try fix extralen bug. Add is_STAKED == 2 to have a consensus block reward of 0.
This commit is contained in:
@@ -1165,6 +1165,10 @@ CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams);
|
|||||||
|
|
||||||
uint64_t komodo_commission(const CBlock *pblock,int32_t height)
|
uint64_t komodo_commission(const CBlock *pblock,int32_t height)
|
||||||
{
|
{
|
||||||
|
// LABS fungible chains, cannot have any block reward!
|
||||||
|
if ( is_STAKED(ASSETCHAINS_SYMBOL) == 2 )
|
||||||
|
return(0);
|
||||||
|
|
||||||
int32_t i,j,n=0,txn_count; int64_t nSubsidy; uint64_t commission,total = 0;
|
int32_t i,j,n=0,txn_count; int64_t nSubsidy; uint64_t commission,total = 0;
|
||||||
txn_count = pblock->vtx.size();
|
txn_count = pblock->vtx.size();
|
||||||
if ( ASSETCHAINS_FOUNDERS != 0 )
|
if ( ASSETCHAINS_FOUNDERS != 0 )
|
||||||
|
|||||||
@@ -1569,6 +1569,9 @@ int64_t komodo_max_money()
|
|||||||
|
|
||||||
uint64_t komodo_ac_block_subsidy(int nHeight)
|
uint64_t komodo_ac_block_subsidy(int nHeight)
|
||||||
{
|
{
|
||||||
|
// LABS fungible chains, cannot have any block reward!
|
||||||
|
if ( is_STAKED(ASSETCHAINS_SYMBOL) == 2 )
|
||||||
|
return(0);
|
||||||
// we have to find our era, start from beginning reward, and determine current subsidy
|
// we have to find our era, start from beginning reward, and determine current subsidy
|
||||||
int64_t numerator, denominator, subsidy = 0;
|
int64_t numerator, denominator, subsidy = 0;
|
||||||
int64_t subsidyDifference;
|
int64_t subsidyDifference;
|
||||||
@@ -1655,7 +1658,7 @@ extern int64_t MAX_MONEY;
|
|||||||
void komodo_args(char *argv0)
|
void komodo_args(char *argv0)
|
||||||
{
|
{
|
||||||
extern const char *Notaries_elected1[][2];
|
extern const char *Notaries_elected1[][2];
|
||||||
std::string name,addn; char *dirname,fname[512],arg0str[64],magicstr[9]; uint8_t magic[4],extrabuf[8192],disablebits[32],*extraptr=0; FILE *fp; uint64_t val; uint16_t port; int32_t i,nonz,baseid,len,n,extralen = 0; uint64_t ccenables[256];
|
std::string name,addn; char *dirname,fname[512],arg0str[64],magicstr[9]; uint8_t magic[4],extrabuf[8192],disablebits[32],*extraptr=0; FILE *fp; uint64_t val; uint16_t port; int32_t i,nonz = 0,baseid,len,n,extralen = 0; uint64_t ccenables[256];
|
||||||
IS_KOMODO_NOTARY = GetBoolArg("-notary", false);
|
IS_KOMODO_NOTARY = GetBoolArg("-notary", false);
|
||||||
IS_STAKED_NOTARY = GetArg("-stakednotary", -1);
|
IS_STAKED_NOTARY = GetArg("-stakednotary", -1);
|
||||||
if ( IS_STAKED_NOTARY != -1 && IS_KOMODO_NOTARY == true ) {
|
if ( IS_STAKED_NOTARY != -1 && IS_KOMODO_NOTARY == true ) {
|
||||||
|
|||||||
Reference in New Issue
Block a user