提交 d319e965 编写于 作者: W Wang Zhi

update the time interval for BP election

上级 589a6c5f
...@@ -64,8 +64,13 @@ namespace eosiosystem { ...@@ -64,8 +64,13 @@ namespace eosiosystem {
}); });
} }
//##YTA-Change start:
/// only update block producers once every minute, block_timestamp is in half seconds /// only update block producers once every minute, block_timestamp is in half seconds
if( timestamp.slot - _gstate.last_producer_schedule_update.slot > 120 ) { //if( timestamp.slot - _gstate.last_producer_schedule_update.slot > 120 ) {
/// update block producers once every two minute due to election strategy is more complex than before
if( timestamp.slot - _gstate.last_producer_schedule_update.slot > 240 ) {
//##YTA-Change end:
update_elected_producers( timestamp ); update_elected_producers( timestamp );
if( (timestamp.slot - _gstate.last_name_close.slot) > blocks_per_day ) { if( (timestamp.slot - _gstate.last_name_close.slot) > blocks_per_day ) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册