Skip to content

Commit

Permalink
Changed block producing timeout to 2500 ms (#1157)
Browse files Browse the repository at this point in the history
  • Loading branch information
abitmore authored Aug 17, 2018
1 parent 31af7aa commit d8136b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/plugins/witness/witness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ block_production_condition::block_production_condition_enum witness_plugin::bloc
elog("Not producing block because node appears to be on a minority fork with only ${pct}% witness participation", (capture) );
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.");
Expand Down Expand Up @@ -266,7 +266,7 @@ block_production_condition::block_production_condition_enum witness_plugin::mayb
return block_production_condition::low_participation;
}

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;
Expand Down

0 comments on commit d8136b7

Please sign in to comment.