Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. {
  2. currentBlock: 1743872,
  3. highestBlock: 1744966,
  4. knownStates: 1193229,
  5. pulledStates: 1143482,
  6. startingBlock: 1732018
  7. }
  8.  
  9. // SyncProgress gives progress indications when the node is synchronising with
  10. // the Ethereum network.
  11. type SyncProgress struct {
  12. StartingBlock uint64 // Block number where sync began
  13. CurrentBlock uint64 // Current block number where sync is at
  14. HighestBlock uint64 // Highest alleged block number in the chain
  15. PulledStates uint64 // Number of state trie entries already downloaded
  16. KnownStates uint64 // Total number os state trie entries known about
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement