Skip to content

Commit 270629e

Browse files
authored
Update chainparams.cpp
last smartnode collateral of 1800000 as defined in chainparams.cpp:488 ff. was set to end at height 308720. following that height the smartnode collateral was undefined and in conclusion leaving the smartnode network disfunct. replacing 308720 with MAX_INT validates the last collateral for smartnodes up to the maximum blockheight possible.
1 parent f305145 commit 270629e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chainparams.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ class CMainParams : public CChainParams {
486486
consensus.nCollaterals = SmartnodeCollaterals(
487487
{
488488
{88720, 60000 * COIN}, {132720, 800000 * COIN}, {176720, 1000000 * COIN}, {220720, 1250000 * COIN},
489-
{264720, 1500000 * COIN}, {308720, 1800000 * COIN}
489+
{264720, 1500000 * COIN}, {INT_MAX, 1800000 * COIN}
490490
},
491491
{
492492
{5761, 0}, {INT_MAX, 20}

0 commit comments

Comments
 (0)