You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
320 B

  1. package common
  2. import ethCommon "github.com/ethereum/go-ethereum/common"
  3. // SyncStatus is returned by the Status method of the Synchronizer
  4. type SyncStatus struct {
  5. CurrentBlock int64
  6. CurrentBatch BatchNum
  7. CurrentForgerAddr ethCommon.Address
  8. NextForgerAddr ethCommon.Address
  9. Synchronized bool
  10. }