BTCPrivate / BitcoinPrivate-legacy

Bitcoin Private is a Bitcoin and Zclassic fork which uses ZK-SNARK technology for privacy and fungibility.
Other
283 stars 132 forks source link

WARNING: abnormally high number of blocks generated #132

Closed appkoders closed 6 years ago

appkoders commented 6 years ago

What does this error mean?

root@host:~/BitcoinPrivate/src# ~/BitcoinPrivate/src/btcp-cli getinfo
{
  "version": 1001051,
  "protocolversion": 180003,
  "walletversion": 60000,
  "balance": 0.19736570,
  "blocks": 280885,
  "timeoffset": 0,
  "connections": 107,
  "proxy": "",
  "difficulty": 153858251.6178415,
  "testnet": false,
  "keypoololdest": 1520077840,
  "keypoolsize": 101,
  "paytxfee": 0.00000000,
  "relayfee": 0.00000100,
  "errors": "WARNING: abnormally high number of blocks generated, 1903 blocks received in the last 4 hours (96 expected)"
}

What does the message: WARNING: abnormally high number of blocks generated, 1903 blocks received in the last 4 hours (96 expected) mean?

fokep commented 6 years ago

You will find the meaning here: main.cpp line 2100. It expects one block every 2.5 min (96 pr. 4 hours). This is part of a check function

//
// Called periodically asynchronously; alerts if it smells like
// we're being fed a bad chain (blocks being generated much
// too slowly or too quickly).
//