2
1
I have a 0.12 full node syncing in prune node.
This is what I get when I execute getblockchaininfo
pi@raspnode:~ $ bitcoin-cli getblockchaininfo {
"chain" : "main",
"blocks" : 276483,
"headers" : 403136,
"bestblockhash" : "00000000000000017871bf646ec12c1e2dedacef87dcd357cea0da1ddb0b64b5",
"difficulty" : 1180923195.25802612,
"verificationprogress" : 0.11950119,
"chainwork" : "00000000000000000000000000000000000000000000084f5ed912538557eaa8",
"pruned" : true,
"softforks" : [
{
"id" : "bip34",
"version" : 2,
"enforce" : {
"status" : true,
"found" : 1000,
"required" : 750,
"window" : 1000
},
"reject" : {
"status" : true,
"found" : 1000,
"required" : 950,
"window" : 1000
}
},
{
"id" : "bip66",
"version" : 3,
"enforce" : {
"status" : false,
"found" : 0,
"required" : 750,
"window" : 1000
},
"reject" : {
"status" : false,
"found" : 0,
"required" : 950,
"window" : 1000
}
},
{
"id" : "bip65",
"version" : 4,
"enforce" : {
"status" : false,
"found" : 0,
"required" : 750,
"window" : 1000
},
"reject" : {
"status" : false,
"found" : 0,
"required" : 950,
"window" : 1000
}
}
],
"pruneheight" : 0 }
I would like to understand the new specs about softforks. I know id is the BIP id. But what about this block of code?
"enforce" : {
"status" : false,
"found" : 0,
"required" : 750,
"window" : 1000
},
"reject" : {
"status" : false,
"found" : 0,
"required" : 950,
"window" : 1000
}