Guest User

Untitled

a guest
Aug 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. message SpvSyncResponse {
  2. enum SyncNotificationType {
  3. FETCH_HEADERS = 0;
  4. DISCOVER_ADDRESSES = 1;
  5. RESCAN = 2;
  6. SYNCED = 3;
  7. PEER_INFORMATION = 4;
  8. }
  9. SyncNotificationType notification_type = 1;
  10.  
  11. message FetchHeaders {
  12. int32 peer_initial_height = 1;
  13. int32 last_header_height = 2;
  14. int64 last_header_time = 3;
  15. int32 fetched_cfilters_count = 4;
  16. }
  17. FetchHeaders fetch_headers = 2;
  18. bool discovered_addresses = 3;
  19. int32 rescanned_through = 4;
  20. int32 peer_count = 5;
  21. bool synced = 6;
  22. }
Add Comment
Please, Sign In to add comment