Spork updates

- Remove 8, 10, 14
 - Add 18-20
 - Update hard-coded link
 - Update RPC example
This commit is contained in:
thephez 2019-03-20 14:06:23 -04:00
parent 097903ca2d
commit 2f97d7cc4e
No known key found for this signature in database
GPG key ID: BBC8A06DBE236099
3 changed files with 24 additions and 15 deletions

View file

@ -44,7 +44,7 @@ To display the status of sporks, use the `show` or `active` syntax.
{% enditemplate %}
*Example from Dash Core 0.12.3*
*Example from Dash Core 0.14.0*
{% highlight bash %}
dash-cli -testnet spork show
@ -56,12 +56,15 @@ Result:
"SPORK_2_INSTANTSEND_ENABLED": 0,
"SPORK_3_INSTANTSEND_BLOCK_FILTERING": 0,
"SPORK_5_INSTANTSEND_MAX_VALUE": 3000,
"SPORK_6_NEW_SIGS": 4000000000,
"SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT": 0,
"SPORK_6_NEW_SIGS": 0,
"SPORK_9_SUPERBLOCKS_ENABLED": 0,
"SPORK_10_MASTERNODE_PAY_UPDATED_NODES": 0,
"SPORK_12_RECONSIDER_BLOCKS": 0,
"SPORK_14_REQUIRE_SENTINEL_FLAG": 0
"SPORK_15_DETERMINISTIC_MNS_ENABLED": 7300,
"SPORK_16_INSTANTSEND_AUTOLOCKS": 0,
"SPORK_17_QUORUM_DKG_ENABLED": 0,
"SPORK_18_QUORUM_DEBUG_ENABLED": 4070908800,
"SPORK_19_CHAINLOCKS_ENABLED": 4070908800,
"SPORK_20_INSTANTSEND_LLMQ_BASED": 4070908800
}
{% endhighlight %}
@ -82,7 +85,7 @@ Result:
{% enditemplate %}
*Example from Dash Core 0.12.3*
*Example from Dash Core 0.14.0*
{% highlight bash %}
dash-cli -testnet spork active
@ -94,12 +97,15 @@ Result:
"SPORK_2_INSTANTSEND_ENABLED": true,
"SPORK_3_INSTANTSEND_BLOCK_FILTERING": true,
"SPORK_5_INSTANTSEND_MAX_VALUE": true,
"SPORK_6_NEW_SIGS": false,
"SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT": true,
"SPORK_6_NEW_SIGS": true,
"SPORK_9_SUPERBLOCKS_ENABLED": true,
"SPORK_10_MASTERNODE_PAY_UPDATED_NODES": true,
"SPORK_12_RECONSIDER_BLOCKS": true,
"SPORK_14_REQUIRE_SENTINEL_FLAG": true
"SPORK_15_DETERMINISTIC_MNS_ENABLED": true,
"SPORK_16_INSTANTSEND_AUTOLOCKS": true,
"SPORK_17_QUORUM_DKG_ENABLED": true,
"SPORK_18_QUORUM_DEBUG_ENABLED": false,
"SPORK_19_CHAINLOCKS_ENABLED": false,
"SPORK_20_INSTANTSEND_LLMQ_BASED": false
}
{% endhighlight %}