Change minsigs to 4, remove supply hack.

This commit is contained in:
blackjok3r
2018-09-21 11:46:25 +08:00
parent af8470697b
commit 6f3af3ff83
3 changed files with 3 additions and 4 deletions

View File

@@ -1554,7 +1554,7 @@ void komodo_args(char *argv0)
if ( name.c_str()[0] != 0 )
{
MAX_BLOCK_SIGOPS = 60000;
ASSETCHAINS_SUPPLY = ( GetArg("-ac_supply",10) + 1 );
ASSETCHAINS_SUPPLY = GetArg("-ac_supply",10);
ASSETCHAINS_ENDSUBSIDY = GetArg("-ac_end",0);
ASSETCHAINS_REWARD = GetArg("-ac_reward",0);
ASSETCHAINS_HALVING = GetArg("-ac_halving",0);
@@ -1752,4 +1752,3 @@ void komodo_prefetch(FILE *fp)
}
fseek(fp,fpos,SEEK_SET);
}