Adds a new array to getblockchaininfo that returns the number of blocks in the current period signaling a BIP9 condition.
Example:
"segwit": {
"status": "started",
"bit": 1,
"startTime": 0,
"timeout": 999999999999,
"since": 144,
"statistics": {
"period length": 144,
"threshold": 108,
"elapsed": 143,
"count": 143,
"possible": true
}
}
and the explanation:
"statistics": { (array) numeric statistics about BIP9 signalling for a softfork
"period length": xx, (numeric) the length in blocks of the BIP9 signalling period
"threshold": xx, (numeric) the number of blocks with the version bit set required to activate the feature
"elapsed": xx, (numeric) the number of blocks elapsed since the beginning of the current period
"count": xx (numeric) the number of blocks with the version bit set in the current period
"possible": xx (boolean) returns false if there are not enough blocks left in this period to pass activation threshold
}