1. Nov 15, 2016
  2. Nov 01, 2016
  3. Oct 31, 2016
    • Gav Wood's avatar
      RPCs for mode change (#3002) · 547871f9
      Gav Wood authored
      * Allow warnings.
      
      * Add RPCs to allow ad-hoc mode changes.
      
      * Add the JSAPI interfaces
      
      * Add missing file.
      547871f9
  4. Oct 30, 2016
  5. Oct 28, 2016
  6. Oct 27, 2016
  7. Oct 24, 2016
  8. Oct 20, 2016
  9. Oct 18, 2016
    • Arkadiy Paronyan's avatar
      Snapshot sync part 2 (#2098) · 487dfb02
      Arkadiy Paronyan authored
      * Split block downloader into a module
      
      * Snapshot sync progress
      
      * Warp sync CLI option
      
      * Increased snapshot chunk and ping timeouts
      
      * Fixed an issue with delayed writes
      
      * Updated bootnodes
      
      * Don't run pending IO tasks on shutdown
      
      * Optional first_block; removed insert_snapshot_block
      
      * Fixing expect calls
      
      * Fixed stalled sync
      
      * style and docs
      
      * Update block_sync.rs
      
      [ci:skip]
      487dfb02
  10. Oct 17, 2016
  11. Oct 14, 2016
    • asynchronous rob's avatar
      Configurable history size in master (#2606) · f28b8352
      asynchronous rob authored
      * split journaldb commit into two functions: journal_under and mark_canonical
      
      * use new commit mechanism in client
      
      * Configurable history size in master
      
      * Reduce DB history
      
      * Configurable history size
      
      * Set min history size
      
      * Test
      
      * Fixed a test and reduced the limit
      f28b8352
  12. Oct 11, 2016
  13. Oct 10, 2016
  14. Oct 08, 2016
  15. Oct 07, 2016
  16. Oct 06, 2016
  17. Oct 05, 2016
  18. Oct 03, 2016
    • Marek Kotewicz's avatar
      Polishing Actually enable fat db pr (#1974) (#2048) · 06fe768a
      Marek Kotewicz authored
      * Actually enable fat db, and do RPCs for it.
      
      * Implement HashDB traits for AccountDB.
      
      * user defaults
      
      * finished user defaults
      
      * user defaults are network-dependent
      
      * added tests for newly added functions, logger is initialized first
      
      * dir cleanup in progress
      
      * user_file is placed next to snapshots
      
      * fixing requested change
      06fe768a
  19. Oct 02, 2016
  20. Sep 28, 2016
  21. Sep 27, 2016
  22. Sep 26, 2016
  23. Sep 21, 2016
  24. Sep 14, 2016
    • Tomasz Drwięga's avatar
      Logs limit & log_index bug (#2073) · 9ed9857f
      Tomasz Drwięga authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * Limiting number of logs
      
      * Test for logs
      
      * Fixing logs ordering and indexing
      
      * Fixing sort
      
      * unwrap -> expect
      
      * Revert "unwrap -> expect"
      
      This reverts commit e99e6e77f37692fe568448e768aa72775de8d0cd.
      9ed9857f
  25. Sep 07, 2016
  26. Sep 06, 2016
    • Arkadiy Paronyan's avatar
      Snapshot sync (#2047) · 5c5d9c8c
      Arkadiy Paronyan authored
      * PV64 sync
      
      * Tests
      
      * Client DB restore
      
      * Snapshot restoration over IPC
      
      * Upating test
      
      * Minor tweaks
      
      * Upating test
      5c5d9c8c
  27. Sep 01, 2016
  28. Aug 29, 2016
    • keorn's avatar
      accumulate seal in precommit · 40256451
      keorn authored
      40256451
    • Nipunn Koorapati's avatar
      Make the block header struct's internals private (#2000) · 4389742c
      Nipunn Koorapati authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * Make the block header struct's internals private
      
      Currently, this involves a lot of explicit cloning, but we
      could migrate the return types of the get_* functions to
      be copies rather than references since they are mostly copy
      types anyway.
      
      I opted to eliminate the constructor in favor of using
      Default::default() plus calling a bunch of setters. This
      is similar to the model that a Google Protobuf client uses
      and I think it looks fine.
      
      * Drop some unnecessary cloning by comparing references
      
      * Fix compiler errors from callsites in tests.
      4389742c