Merge pull request #97 from peerplays-network/feature/GRPH-61

Increase block creation timeout to 2500ms
This commit is contained in:
Bobinson K B 2019-09-02 19:20:07 +05:30 committed by GitHub
commit cdc89c16ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,7 +211,7 @@ block_production_condition::block_production_condition_enum witness_plugin::bloc
("n", capture["n"])("t", capture["t"])("c", capture["c"]));
break;
case block_production_condition::lag:
elog("Not producing block because node didn't wake up within 500ms of the slot time.");
elog("Not producing block because node didn't wake up within 2500ms of the slot time.");
break;
case block_production_condition::consecutive:
elog("Not producing block because the last block was generated by the same witness.\nThis node is probably disconnected from the network so block production has been disabled.\nDisable this check with --allow-consecutive option.");
@ -291,7 +291,7 @@ block_production_condition::block_production_condition_enum witness_plugin::mayb
// return block_production_condition::local_clock; //Not producing block because head block is less than a second old.
//}
if( llabs((scheduled_time - now).count()) > fc::milliseconds( 500 ).count() )
if( llabs((scheduled_time - now).count()) > fc::milliseconds( 2500 ).count() )
{
capture("scheduled_time", scheduled_time)("now", now);
return block_production_condition::lag;