1. Dec 05, 2016
  2. Nov 22, 2016
  3. Nov 03, 2016
    • Gav Wood's avatar
      EIPs 155, 160, 161 (#2976) · d3de4752
      Gav Wood authored
      * The front-end for each hard-fork, also EIP-160.
      
      * Address EIP161 a/c
      
      * Include EIP-161b
      
      * EIP-161 part d.
      
      * Fix test build.
      
      * Fix one test, add another.
      
      * Fix use of bloom & renaming.
      
      * Initial groundwork for EIP-155
      
      * Fix minor bug.
      
      * Fix all tests finally.
      
      * Rest of EIP-155.
      
      * Add tests for EIP-155 algorithm.
      
      Update transaction tests validation.
      
      * Minor reformat.
      
      * Address grumbles.
      
      * Remove unused code.
      
      * Fix SUICIDE gas mechanism and add consensus tests.
      
      * Remove commented code.
      
      * Set Frontier hardfork block number
      
      * Fix warning.
      
      * Transaction tests,
      d3de4752
  4. Oct 28, 2016
    • asynchronous rob's avatar
      Even more snapshot validity checks (#2935) · 2806f1d4
      asynchronous rob authored
      * clarify "cancelled periodic snapshot" message
      
      * more rigorous checks for snapshot validity
      
      * verify ancient blocks on import
      
      * limit number of fed blocks
      
      * make it possible to feed snapshot service canonical hashes
      
      * fix failing test build
      
      * swap ethash DAG only when more recent
      2806f1d4
  5. Oct 27, 2016
  6. Oct 24, 2016
    • asynchronous rob's avatar
      Snapshot and blockchain stability improvements (#2843) · bc81ae04
      asynchronous rob authored
      * allow taking snapshot from just-restored database without error
      
      * make creation informant less spammy
      
      * Ancestry iterator failure-resilient
      
      * make uncle hash searching resilient to incomplete chain
      
      * deduce pre-chunk info from last written block's details
      bc81ae04
  7. Oct 20, 2016
  8. 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
  9. Oct 15, 2016
    • Gav Wood's avatar
      EIP150.1c (#2591) · 85eeb3ea
      Gav Wood authored
      * EIP150.1b first part.
      
      * Add documentation.
      
      [ci:skip]
      
      * Tweak comment
      
      * Fix some tests.
      
      * Fix create
      
      * Add the new EIP150 test. (#2563)
      
      * Fix create some more.
      
      * Another fix for create.
      
      * Final fixes.
      
      * Enable EIP150 test.
      
      * Revert the costly suicides to respect EIP150.1b.
      
      * Fixups for EIP150.1c
      
      * Update tests.
      
      * Updating tests
      
      * Adding state tests
      
      * Updating tests
      
      * Updating HF block
      
      * Removing flushln [ci:skip]
      
      * Commenting out suicide test
      
      * New tests.
      
      * Switch to EIP tests.
      
      * Rename some stuff, combine transition tests.
      
      * Fix U256 overflows.
      
      * Name cleanups and an effort to fix tests.
      
      * Rename back for clarity.
      
      * Fix non-EIP-150 OOG CALLs
      
      * New transition block number & additional EIP150 tests
      
      * Morden transition block set; Tests updated
      
      * Added missing test
      85eeb3ea
  10. Sep 30, 2016
  11. Sep 29, 2016
  12. Sep 28, 2016
  13. Sep 16, 2016
  14. 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
  15. Sep 01, 2016
  16. Aug 31, 2016
  17. Aug 29, 2016
    • 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
  18. Aug 25, 2016
  19. Aug 24, 2016
  20. Aug 18, 2016
  21. Aug 08, 2016
  22. Aug 05, 2016
    • asynchronous rob's avatar
      Snapshot creation and restoration (#1679) · 76a72463
      asynchronous rob authored
      * to_rlp takes self by-reference
      
      * clean up some derefs
      
      * out-of-order insertion for blockchain
      
      * implement block rebuilder without verification
      
      * group block chunk header into struct
      
      * block rebuilder does verification
      
      * integrate snapshot service with client service; flesh out implementation more
      
      * initial implementation of snapshot service
      
      * remove snapshottaker trait
      
      * snapshot writer trait with packed and loose implementations
      
      * write chunks using "snapshotwriter" in service
      
      * have snapshot taking use snapshotwriter
      
      * implement snapshot readers
      
      * back up client dbs when replacing
      
      * use snapshot reader in snapshot service
      
      * describe offset format
      
      * use new get_db_path in parity, allow some errors in service
      
      * blockchain formatting
      
      * implement parity snapshot
      
      * implement snapshot restore
      
      * force blocks to be submitted in order
      
      * fix bug loading block hashes in packed reader
      
      * fix seal field loading
      
      * fix uncle hash computation
      
      * fix a few bugs
      
      * store genesis state in db. reverse block chunk order in packed writer
      
      * allow out-of-order import for blocks
      
      * bring restoration types together
      
      * only snapshot the last 30000 blocks
      
      * restore into overlaydb instead of journaldb
      
      * commit version to database
      
      * use memorydbs and commit directly
      
      * fix trie test compilation
      
      * fix failing tests
      
      * sha3_null_rlp, not H256::zero
      
      * move overlaydb to ref_overlaydb, add new overlaydb without on-disk rc
      
      * port archivedb to new overlaydb
      
      * add deletion mode tests for overlaydb
      
      * use new overlaydb, check state root at end
      
      * share chain info between state and block snapshotting
      
      * create blocks snapshot using blockchain directly
      
      * allow snapshot from arbitrary block, remove panickers from snapshot creation
      
      * begin test framework
      
      * blockchain chunking test
      
      * implement stateproducer::tick
      
      * state snapshot test
      
      * create block and state chunks concurrently, better restoration informant
      
      * fix tests
      
      * add deletion mode tests for overlaydb
      
      * address comments
      
      * more tests
      
      * Fix up tests.
      
      * remove a few printlns
      
      * add a little more documentation to `commit`
      
      * fix tests
      
      * fix ref_overlaydb test names
      
      * snapshot command skeleton
      
      * revert ref_overlaydb renaming
      
      * reimplement snapshot commands
      
      * fix many errors
      
      * everything but inject
      
      * get ethcore compiling
      
      * get snapshot tests passing again
      
      * instrument snapshot commands again
      
      * fix fallout from other changes, mark snapshots as experimental
      
      * optimize injection patterns
      
      * do two injections
      
      * fix up tests
      
      * take snapshots from 1000 blocks efore
      
      * address minor comments
      
      * fix a few io crate related errors
      
      * clarify names about total difficulty
      
      [ci skip]
      76a72463
  23. Aug 03, 2016
  24. Aug 01, 2016
  25. Jul 30, 2016
    • Marek Kotewicz's avatar
      cache manager and clearing tracing cache (#1769) · bcf8cd6d
      Marek Kotewicz authored
      * removed configure_cache method
      
      * generic cache_manager struct
      
      * fixed #1743, tracing caches are cleared
      
      * removed deadlocks in garbage_collect, implemented HeapSizeOf for traces
      
      * trace cache config
      
      * fixed carbage typo
      bcf8cd6d
  26. Jul 28, 2016
    • Gav Wood's avatar
      Minor tweak to logging. Fix CLI help. · 4304f4a2
      Gav Wood authored
      4304f4a2
    • Tomasz Drwięga's avatar
      Single DB (#1741) · e4f0c0b2
      Tomasz Drwięga authored
      * Consolidation migration
      
      * Started db amalgamation
      
      * Using client constants for columns
      
      * Adding with_columns constructor
      
      * Migrating to single db
      
      * Fixing tests.
      
      * test.sh without verbose
      
      * Fixing warnings
      
      * add migration tests that catch the bug
      
      * make multiple migrations more robust
      
      * add moved v9
      
      * Merge branch 'noop-migrations' into single-db
      
      * spurious line
      
      * clean up migrations ordering
      
      * update comment [ci skip]
      
      * Bumping default number of max_open_files & re-ordering columns.
      
      * fix merge
      
      * fix ignored analysis tests
      
      * Caching best block content
      
      * Faster best_block_header
      
      * Adding progress to v8 migration
      
      * clean up warnings
      
      * Separate hashes and bodies in the DB
      
      * Separate hashes and bodies in the DB
      
      * Fixed tests
      e4f0c0b2
    • Gav Wood's avatar
      0934a283
  27. Jul 27, 2016
    • keorn's avatar
      Blocks and snapshot compression (#1687) · 02cf4868
      keorn authored
      * new Compressible rlp trait
      
      * new Compressible rlp trait
      
      * make compressed rlp iterable
      
      * make compressed rlp iterable
      
      * invalid rlp slice swapper
      
      * switch compress to swapper, add reverse swapper test case
      
      * add basic account compression test
      
      * add new rlp trait
      
      * new Compressible rlp trait
      
      * make compressed rlp iterable
      
      * invalid rlp slice swapper
      
      * invalid rlp slice swapper
      
      * switch compress to swapper, add reverse swapper test case
      
      * switch compress to swapper, add reverse swapper test case
      
      * add account compress/ decompress test
      
      * make compressor cleaner, use hashmaps for swapper
      
      * improve compression tests
      
      * add a DecompressingDecoder, change Decoder to take refernce
      
      * separate rlp compression related stuff
      
      * new Compressible rlp trait
      
      * new Compressible rlp trait
      
      * new Compressible rlp trait
      
      * make compressed rlp iterable
      
      * make compressed rlp iterable
      
      * make compressed rlp iterable
      
      * invalid rlp slice swapper
      
      * invalid rlp slice swapper
      
      * invalid rlp slice swapper
      
      * switch compress to swapper, add reverse swapper test case
      
      * switch compress to swapper, add reverse swapper test case
      
      * switch compress to swapper, add reverse swapper test case
      
      * add basic account compression test
      
      * add new rlp trait
      
      * add account compress/ decompress test
      
      * make compressor cleaner, use hashmaps for swapper
      
      * improve compression tests
      
      * add a DecompressingDecoder, change Decoder to take refernce
      
      * separate rlp compression related stuff
      
      * DecompressingDecoder test
      
      * initial compressing HashDB wrapper
      
      * remove unused test
      
      * change CompressedDB to struct wrapper with overlay
      
      * simplify compressor
      
      * failed RefCell attempt
      
      * use denote to return reference
      
      * compiled compresseddb
      
      * compressdb test, add overlay emplace
      
      * fix overlay reference count handling
      
      * add immutable compresseddb, make account use hashdb
      
      * simplify using trait objects
      
      * enable hashdb for account
      
      * initial state compression attempt
      
      * wrap state db
      
      * add tests for analyzing db
      
      * add account predicate
      
      * try to compress data fields as rlp too
      
      * remove compression for storage trie
      
      * add a compressing migration
      
      * more compression stats tests
      
      * fix migration import
      
      * nested encoding compression test
      
      * fix decompression, move db stats tests to rlpcompression
      
      * added malformed rlp tests, cover a few edge cases
      
      * new CompressingEncoder struct
      
      * extend migrations to state
      
      * first version working on the whole db
      
      * clean up Compressible impl
      
      * tests cleanup
      
      * add a testing migration
      
      * refactor deep compression using option, add simple compression
      
      * put tests in a module
      
      * fix compressed overlay loading
      
      * simple compression for snapshots
      
      * remove unused DecompressingDecoder
      
      * add a general compressing migration
      
      * add more common rlps to compress
      
      * use static slices for swapper
      
      * add precomputed hashes and invalid rlps
      
      * make decoder private again
      
      * cover more cases with tests
      
      * style
      
      * fix weird indentation
      
      * remove possible panic in payload_info
      
      * make prefix checking safe
      
      * fix db existence check
      
      * remove db dir from test
      
      * pass usize by value [ci skip]
      
      * Improve comment on panic removal.
      
      * add common blocks db rlps
      
      * add compression to blockchain db
      
      * add blocks db migration
      
      * fix the migrations
      
      * remove state compression
      
      * add a separate snapshot swapper
      
      * ability to use different swappers and traversal
      
      * update tests to new interface
      
      * clean up code ordering
      
      * update usage
      
      * fix compilation
      
      * remove unnecessary changes
      
      * move methods to functions to reduce interface
      
      * move test to module
      
      * update common rlps to blocks db
      
      * move tests to tests modules
      
      * remove redundant &
      02cf4868
  28. Jul 26, 2016
  29. Jul 25, 2016