1. Aug 25, 2016
  2. Aug 24, 2016
  3. Aug 23, 2016
    • Tomasz Drwięga's avatar
      Resolving URLs from contract (#1964) · 124a5da7
      Tomasz Drwięga authored
      * Fetching dapp from github.
      
      * Unpacking dapp
      
      * Removing hardcodes
      
      * Proper Host validation
      
      * Randomizing paths
      
      * Splitting into files
      
      * Serving donwloaded apps from different path
      
      * Extracting URLHint to separate module
      
      * Whitespace and docs
      
      * Resolving from URLHint contract
      
      * Fixing test
      
      * Resolving githubhint url from registrar
      
      * Proper redirections
      
      * Fixing test
      
      * fixing ethstore [ci skip]
      
      * Correct version of registrar
      
      * Removing superfluous Box
      124a5da7
    • Nipunn Koorapati's avatar
      2a550c2a
    • Marek Kotewicz's avatar
      fixed #1933 (#1979) · d4777f92
      Marek Kotewicz authored
      d4777f92
    • Gav Wood's avatar
      Market-orientated transaction pricing (#1963) · 35ecb396
      Gav Wood authored
      * Market-orientated transaction pricing
      
      Avoid a strict gas-limit and let the market decide through using
      a priority queue based around gas pricing for transactions. In
      periods of low transaction volume, they'll be processed for a lower
      fee.
      
      * Fix tests, add/clarify documentation, fix some logic.
      
      * Change default to reflect CLI.
      
      * Specify type.
      
      * Make test more precise.
      
      * Fix doc test
      35ecb396
    • Nikolay Volf's avatar
      address grumbles · 2d0a7c33
      Nikolay Volf authored
      2d0a7c33
  4. Aug 22, 2016
  5. Aug 18, 2016
  6. Aug 17, 2016
  7. Aug 15, 2016
  8. Aug 11, 2016
    • Gav Wood's avatar
      RPC for importing geth keys (#1916) · ca54b8e4
      Gav Wood authored
      * Address book for local addresses.
      
      * Simple disk-backed address book.
      
      * Add test and keep file with keys.
      
      * View and import Geth keys.
      
      * Fix test.
      
      * Fix up author info.
      
      [ci:skip]
      ca54b8e4
  9. Aug 10, 2016
  10. Aug 09, 2016
  11. Aug 08, 2016
  12. 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
    • Arkadiy Paronyan's avatar
      Unlock account with timeout for geth compatibility (#1854) · 2f524253
      Arkadiy Paronyan authored
      * Unlock account with timeout for geth compatibility
      
      * Fixed test
      2f524253
    • 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