Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ConsensusContext.java #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,20 @@ public class ConsensusContext {
* 某个QC需要收集到的最小节点支持数,适用于GenericQC中的BlockVoteMsg,也适用于NewViewMsg
*/
int qcMinNodeCnt;


/**
*上一次超时的视图号
*/
Long latestTimeOutViewNo;


/**
* 本地节点上一次更新到的区块高度
*/
Long latestChannelUpdateHeight = 0L;


/**
* 当前超时时间
*/
Long currentTimeOut;

/**
Expand All @@ -81,7 +90,10 @@ public class ConsensusContext {
* 节点自身
*/
Peer myself;


/**
* 当前视图的leader节点
*/
Peer currLeader;

/**
Expand Down