fix max money cap!?
This commit is contained in:
@@ -177,6 +177,18 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"ac_name": "KMDICE",
|
||||||
|
"ac_supply": "10500000",
|
||||||
|
"ac_reward": "2500000000",
|
||||||
|
"ac_halving": "210000",
|
||||||
|
"ac_cc": "2",
|
||||||
|
"addressindex": "1",
|
||||||
|
"spentindex": "1",
|
||||||
|
"addnode": [
|
||||||
|
"144.76.217.232"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
"ac_name": "DION",
|
"ac_name": "DION",
|
||||||
"ac_supply": "3900000000",
|
"ac_supply": "3900000000",
|
||||||
"ac_reward": "22260000000",
|
"ac_reward": "22260000000",
|
||||||
|
|||||||
@@ -1641,8 +1641,8 @@ void komodo_args(char *argv0)
|
|||||||
MAX_MONEY += (MAX_MONEY * ASSETCHAINS_COMMISSION) / SATOSHIDEN;
|
MAX_MONEY += (MAX_MONEY * ASSETCHAINS_COMMISSION) / SATOSHIDEN;
|
||||||
if ( ASSETCHAINS_CC >= KOMODO_FIRSTFUNGIBLEID && MAX_MONEY < 1000000LL*SATOSHIDEN )
|
if ( ASSETCHAINS_CC >= KOMODO_FIRSTFUNGIBLEID && MAX_MONEY < 1000000LL*SATOSHIDEN )
|
||||||
MAX_MONEY = 1000000LL*SATOSHIDEN;
|
MAX_MONEY = 1000000LL*SATOSHIDEN;
|
||||||
if ( MAX_MONEY <= 0 || MAX_MONEY > 1000000000LL*SATOSHIDEN )
|
//if ( MAX_MONEY <= 0 || MAX_MONEY > 1000000000LL*SATOSHIDEN )
|
||||||
MAX_MONEY = 1000000000LL*SATOSHIDEN;
|
// MAX_MONEY = 1000000000LL*SATOSHIDEN;
|
||||||
//fprintf(stderr,"MAX_MONEY %llu %.8f\n",(long long)MAX_MONEY,(double)MAX_MONEY/SATOSHIDEN);
|
//fprintf(stderr,"MAX_MONEY %llu %.8f\n",(long long)MAX_MONEY,(double)MAX_MONEY/SATOSHIDEN);
|
||||||
//printf("baseid.%d MAX_MONEY.%s %.8f\n",baseid,ASSETCHAINS_SYMBOL,(double)MAX_MONEY/SATOSHIDEN);
|
//printf("baseid.%d MAX_MONEY.%s %.8f\n",baseid,ASSETCHAINS_SYMBOL,(double)MAX_MONEY/SATOSHIDEN);
|
||||||
ASSETCHAINS_P2PPORT = komodo_port(ASSETCHAINS_SYMBOL,ASSETCHAINS_SUPPLY,&ASSETCHAINS_MAGIC,extraptr,extralen);
|
ASSETCHAINS_P2PPORT = komodo_port(ASSETCHAINS_SYMBOL,ASSETCHAINS_SUPPLY,&ASSETCHAINS_MAGIC,extraptr,extralen);
|
||||||
|
|||||||
Reference in New Issue
Block a user