1. Oct 08, 2016
  2. Oct 07, 2016
  3. Oct 05, 2016
  4. Oct 04, 2016
  5. Oct 03, 2016
    • Nikolay Volf's avatar
      Accounts bloom in master (#2426) · e1d3b3ff
      Nikolay Volf authored
      * bloom crate link
      
      * database layout and outdated tests
      
      * state db alterations
      
      * v10 migration run
      
      * using arc
      
      * bloom migration
      
      * migration fixes and mess
      
      * fix tests
      e1d3b3ff
    • 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
  6. Oct 02, 2016
  7. Sep 28, 2016
  8. Sep 27, 2016
  9. Sep 26, 2016
    • Marek Kotewicz's avatar
      user defaults (#2014) · 56eb97ab
      Marek Kotewicz authored
      * 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
      56eb97ab
  10. Sep 22, 2016
    • Gav Wood's avatar
      Encryption, decryption and public key RPCs. (#1946) · 07b5e9a5
      Gav Wood authored
      * Fix up pending receipts details.
      
      * Add support for additional params and registry over RPC.
      
      * Fix tests.
      
      * Add test, additional fix.
      
      Fixes #1932.
      
      * Fix up tests.
      
      * Fix test.
      
      * Fix test.
      
      * Remove unused use.
      
      * Add encryption, decryption and public-key RPCs.
      
      * Remove &
      07b5e9a5
  11. Sep 21, 2016
  12. 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
  13. Sep 07, 2016
  14. 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
  15. Sep 05, 2016
  16. Sep 02, 2016
  17. Sep 01, 2016
  18. 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
  19. Aug 25, 2016
  20. Aug 24, 2016
    • Marek Kotewicz's avatar
      Signature cleanup (#1921) · b0d462c6
      Marek Kotewicz authored
      * Address renamed to H160 at bigint library level
      
      * moved uint specific test from util to bigint library
      
      * naming
      
      * unifing hashes in progress
      
      * unifing hashes
      
      * cleanup redundant unwraps in tests
      
      * Removing util/crypto in progress.
      
      * fixed compiling
      
      * signature cleanup in progress
      
      * new module - ethcrypto used by ethstore and ethcore-network
      
      * fixed compiling
      
      * fixed compiling
      
      * fixed merge
      b0d462c6
    • asynchronous rob's avatar
      Trie query recording and AccountDB factory for no mangling (#1944) · 190e4db2
      asynchronous rob authored
      * optionally use no mangling for accountdb
      
      * add the recorder module
      
      * get_recorded for tries, no virtual dispatch on readonly tries
      
      * add recording test
      190e4db2
  21. Aug 23, 2016
  22. Aug 18, 2016
  23. Aug 17, 2016
  24. Aug 10, 2016
  25. Aug 08, 2016
  26. Aug 05, 2016
    • asynchronous rob's avatar
      miner and client take spec reference (#1853) · e72fc539
      asynchronous rob authored
      * miner and client take spec reference
      
      * fix tests
      e72fc539
    • 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