1. Aug 15, 2017
  2. Aug 14, 2017
  3. Aug 09, 2017
  4. Aug 07, 2017
  5. Aug 04, 2017
  6. Aug 03, 2017
  7. Aug 02, 2017
    • Marek Kotewicz's avatar
      Chainspec validation (#6197) · 0c7c34e6
      Marek Kotewicz authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * chainspec validation
      
      * better error formatting for chainspec
      
      * lint validate_chainspecs.sh
      
      * quit takes &str instead of S: AsRef<str>
      
      * push CI
      
      * don't double check spec validity
      0c7c34e6
  8. Aug 01, 2017
  9. Jul 31, 2017
  10. Jul 29, 2017
  11. Jul 28, 2017
  12. Jul 27, 2017
  13. Jul 26, 2017
    • Feynman Liang's avatar
      Tendermint epoch transitions (#6085) · 5eb8cea6
      Feynman Liang authored
      * Adds signals_epoch_end to tendermint
      
      * Adds is_epoch_end
      
      * Adds snapshot_components
      
      * Adds tendermint Epoch Verifier
      
      * Fix documentation typos
      
      * Change check_finality_proof to panic
      
      * Fix compilation
      
      * Adds Unconfirmed path to epoch_verifier
      
      * Verify if address is validator in EpochVerifier
      
      * check_finality_proof errors on failure
      
      * Don't share combine/destructure_proofs
      
      * Remove invalid import
      
      * Remove duplicate epoch verifier trait
      
      * Fix docs
      
      * Adds recover stub to tendermint EpochVerifier
      
      * Adds verify_light test
      
      * Avoid boxed closure
      
      * Style fixes
      5eb8cea6
    • asynchronous rob's avatar
      light client fixes (#6148) · 7d348e22
      asynchronous rob authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * light client fixes
      
      * fix memory-lru-cache
      
      * clear pending reqs on disconnect
      7d348e22
  14. Jul 25, 2017
  15. Jul 24, 2017
  16. Jul 21, 2017
  17. Jul 19, 2017
  18. Jul 18, 2017
  19. Jul 16, 2017
    • Andre Silva's avatar
      Refactor price_info (#6003) · c7af7022
      Andre Silva authored
      * refactor PriceInfo to use Fetch and reuse the client
      
      * forget Fetch future to keep it running in the background
      
      * update Debug message for price_info::Client
      
      * wrap underlying errors in price_info client
      
      * use debug_struct in price_info client debug implementation
      
      * use global fetch service in price_info client
      
      * rename gas_pricer parameter in RunCmd
      
      * move price_info to its own crate
      
      * fix price_info tests
      
      * replace rustc_serialize with serde_json in price_info
      
      * add documentation for price_info
      
      * remove unused rustc-serialize dependency from ethcore
      
      * fix price_info formatting
      
      * re-export fetch crate in price_info
      
      * remove unused cfg attributes in price_info
      
      * add tests for price_info
      c7af7022
  20. Jul 15, 2017
  21. Jul 14, 2017
    • asynchronous rob's avatar
      Initial Whisper implementation (#6009) · 99075ad2
      asynchronous rob authored
      * whisper skeleton
      
      * basic message store
      
      * rallying and message logic
      
      * pass host info to network protocol handlers
      
      * choose who starts rally based on node key
      
      * module reshuffling
      
      * mining messages
      
      * prune messages by low PoW until below size target
      
      * associated error type for ethkey generators and `OsRng` generator
      
      * beginnings of RPC
      
      * generic message handler for whisper
      
      * reshuffle code order
      
      * standard payload encoding and decoding
      
      * basic crypto
      
      * minor restructuring of net code
      
      * implement shh_post
      
      * merge?
      
      * implement filters
      
      * rand trait for hash types
      
      * filter RPCs for whisper
      
      * symmetric encryption of payload
      
      * pub-sub
      
      * filter tests
      
      * use only secure random IDs
      
      * attach arbitrary protocols to network
      
      * basic integration of whisper into Parity
      
      * eagerly prune low PoW entries
      
      * broadcast messages with salted topics
      
      * node info RPC
      
      * fix import
      
      * fix leading zeros calculation
      
      * address minor grumbles
      99075ad2
  22. Jul 13, 2017
    • Arkadiy Paronyan's avatar
      Bumped version · debbfc11
      Arkadiy Paronyan authored
      debbfc11
    • Tomasz Drwięga's avatar
      Limit transaction queue memory & limit future queue (#6038) · 1aaafa2d
      Tomasz Drwięga authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * Remove confusing gas_limit in the pool.
      
      * Change defaults
      
      * Limit transaction queue by memory usage.
      
      * Change defaults to something lower.
      
      * Fix rpc test.
      
      * Fix js issues.
      
      * Renamed block_gas_limit
      1aaafa2d
    • keorn's avatar
      New contract PoA sync fixes (#5991) · 22261bc2
      keorn authored
      * generate proofs on newly-created state
      
      * report only missed steps after first block
      
      * dont report skipped if not signer
      
      * test
      
      * finality tracing and passing valid header to `commit_block`
      
      * avoid proposing multiple times on the same step when validator set changes
      
      * limit benign reports
      
      * Ordering -> AtomicOrdering
      
      * reinstate warning now that spam is reduced
      
      * flush pending transition changes when necessary
      
      * ensure epochs aren't re-zoomed on every block
      22261bc2
  23. Jul 12, 2017
    • asynchronous rob's avatar
      Ethcore crate split part 1 (#6041) · d365281c
      asynchronous rob authored
      * split out types into separate crate
      
      * split out evm into its own crate
      d365281c
    • Joseph Mark's avatar
      Errors & warnings for inappropriate RPCs (#6029) · 0fca4f95
      Joseph Mark authored
      * Clarify function name
      
      Function checks if sealing is currently underway, not to be confused
      with checking whether the engine performs internal sealing.
      
      * Error when work called on internal sealing engine
      
      * Error submitting work for internal sealing engine
      
      * Fix inverted bool and style grumbles
      
      * Add can_produce_work_package to TestMinerService
      
      * Error when setting engine signer on PoW chain
      
      * Unit tests for engine signing
      
      Setting engine signer should fail if chain does not seal internally
      or client lacks account provider.
      
      * Tweak TestMinerService
      
      * Fix minor style grumbles
      0fca4f95