-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Eval EXEC <execvy@gmail.com>
- Loading branch information
Showing
4 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
package org.nervos.ckb.type; | ||
|
||
public class SyncState { | ||
public boolean ibd; | ||
public byte[] assumeValidTarget; | ||
public boolean assumeValidTargetReached; | ||
public long bestKnownBlockNumber; | ||
public long bestKnownBlockTimestamp; | ||
public long orphanBlocksCount; | ||
public long inflightBlocksCount; | ||
public long fastTime; | ||
public long normalTime; | ||
public boolean ibd; | ||
public long inflightBlocksCount; | ||
public long lowTime; | ||
public long minChainWork; | ||
public boolean minChainWorkReached; | ||
public long normalTime; | ||
public long orphanBlocksCount; | ||
public byte[] tipHash; | ||
public long tipNumber; | ||
public byte[] unverifiedTipHash; | ||
public long unverifiedTipNumber; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters