1. Jun 04, 2018
    • Niklas Adolfsson's avatar
      Update `license header` and `scripts` (#8666) · 98b7c071
      Niklas Adolfsson authored and Marek Kotewicz's avatar Marek Kotewicz committed
      * Update `add_license` script
      
      * run script
      
      * add `remove duplicate lines script` and run it
      
      * Revert changes `English spaces`
      
      * strip whitespaces
      
      * Revert `GPL` in files with `apache/mit license`
      
      * don't append `gpl license` in files with other lic
      
      * Don't append `gpl header` in files with other lic.
      
      * re-ran script
      
      * include c and cpp files too
      
      * remove duplicate header
      
      * rebase nit
      98b7c071
  2. May 11, 2018
  3. Apr 14, 2018
  4. Apr 10, 2018
  5. Apr 09, 2018
    • Anton Gavrilov's avatar
      Private transactions integration pr (#6422) · e6f75bcc
      Anton Gavrilov authored and Marek Kotewicz's avatar Marek Kotewicz committed
      * Private transaction message added
      
      * Empty line removed
      
      * Private transactions logic removed from client into the separate module
      
      * Fixed compilation after merge with head
      
      * Signed private transaction message added as well
      
      * Comments after the review fixed
      
      * Private tx execution
      
      * Test update
      
      * Renamed some methods
      
      * Fixed some tests
      
      * Reverted submodules
      
      * Fixed build
      
      * Private transaction message added
      
      * Empty line removed
      
      * Private transactions logic removed from client into the separate module
      
      * Fixed compilation after merge with head
      
      * Signed private transaction message added as well
      
      * Comments after the review fixed
      
      * Encrypted private transaction message and signed reply added
      
      * Private tx execution
      
      * Test update
      
      * Main scenario completed
      
      * Merged with the latest head
      
      * Private transactions API
      
      * Comments after review fixed
      
      * Parameters for private transactions added to parity arguments
      
      * New files added
      
      * New API methods added
      
      * Do not process packets from unconfirmed peers
      
      * Merge with ptm_ss branch
      
      * Encryption and permissioning with key server added
      
      * Fixed compilation after merge
      
      * Version of Parity protocol incremented in order to support private transactions
      
      * Doc strings for constants added
      
      * Proper format for doc string added
      
      * fixed some encryptor.rs grumbles
      
      * Private transactions functionality moved to the separate crate
      
      * Refactoring in order to remove late initialisation
      
      * Tests fixed after moving to the separate crate
      
      * Fetch method removed
      
      * Sync test helpers refactored
      
      * Interaction with encryptor refactored
      
      * Contract address retrieving via substate removed
      
      * Sensible gas limit for private transactions implemented
      
      * New private contract with nonces added
      
      * Parsing of the response from key server fixed
      
      * Build fixed after the merge, native contracts removed
      
      * Crate renamed
      
      * Tests moved to the separate directory
      
      * Handling of errors reworked in order to use error chain
      
      * Encodable macro added, new constructor replaced with default
      
      * Native ethabi usage removed
      
      * Couple conversions optimized
      
      * Interactions with client reworked
      
      * Errors omitting removed
      
      * Fix after merge
      
      * Fix after the merge
      
      * private transactions improvements in progress
      
      * private_transactions -> ethcore/private-tx
      
      * making private transactions more idiomatic
      
      * private-tx encryptor uses shared FetchClient and is more idiomatic
      
      * removed redundant tests, moved integration tests to tests/ dir
      
      * fixed failing service test
      
      * reenable add_notify on private tx provider
      
      * removed private_tx tests from sync module
      
      * removed commented out code
      
      * Use plain password instead of unlocking account manager
      
      * remove dead code
      
      * Link to the contract changed
      
      * Transaction signature chain replay protection module created
      
      * Redundant type conversion removed
      
      * Contract address returned by private provider
      
      * Test fixed
      
      * Addressing grumbles in PrivateTransactions (#8249)
      
      * Tiny fixes part 1.
      
      * A bunch of additional comments and todos.
      
      * Fix ethsync tests.
      
      * resolved merge conflicts
      
      * final private tx pr (#8318)
      
      * added cli option that enables private transactions
      
      * fixed failing test
      
      * fixed failing test
      
      * fixed failing test
      
      * fixed failing test
      e6f75bcc
  6. Apr 03, 2018
  7. Apr 02, 2018
  8. Mar 14, 2018
    • Toralf Wittner's avatar
      Replace reqwest with hyper (#8099) · 322dfbcd
      Toralf Wittner authored
      * Very primitive test of the Client API
      
      * [WIP] getting rid of request
      
      * Add support for redirects.
      
      * Remove CpuPool from `fetch::Client`.
      
      * Adapt code to API changes and fix tests.
      
      * Use reference counter to stop background thread.
      
      On `clone` the counter is incremented, on `drop` decremented. Once 0 we
      send `None` over the channel, expecting the background thread to end.
      
      * Fix tests.
      
      * Comment.
      
      * Change expect messages.
      
      * Use local test server for testing fetch client.
      
      * Ensure max_size also in BodyReader.
      
      * Replace `Condvar` with `sync_channel`.
      
      * Re-export `url::Url` from `fetch` crate.
      
      * Remove spaces.
      
      * Use random ports in local test server.
      322dfbcd
  9. Mar 12, 2018
    • Niklas Adolfsson's avatar
      [contract-client] refactor (#7978) · e0f71b0c
      Niklas Adolfsson authored
      * Refactor usage of registry contract
      
      * remove unsed file
      
      * Rename methods & fix comments
      
      * refactor contract_client:
      
      * Intoduced separate traits for asyncronous and syncronous contract clients
      * Removed registrar from ethcore::client
      * s/ContractClient/AsyncContractClient
      
      * make the tests compile and pass
      
      * omit changes in ethcore
      
      * Use only one trait for ContractClient
      
      * Use an associated type in the trait to determine syncronous or asyncronous communication
      * Export the types from contract-client crate
      * Document that "A" in the hash correspons to a DNS A Record A.K.A Address Record
      
      * contract_client -> registrar
      
      * address review feedback
      e0f71b0c
  10. Feb 15, 2018
  11. Feb 09, 2018
    • Marek Kotewicz's avatar
      ethabi version 5 (#7723) · c060d958
      Marek Kotewicz authored
      * Refactor updater to use ethabi-derive
      
      * Grumble: do_call type alias
      
      * Empty commit to trigger test re-run
      
      * migration to ethabi-5.0
      
      * migration to ethabi-5.0 in progress
      
      * use ethabi_deriven to generate TransactAcl contract
      
      * use ethabi_deriven to generate Registry contract
      
      * hash-fetch uses ethabi_derive, removed retain cycle from updater, fixed #7720
      
      * node-filter crate uses ethabi_derive to generate peer_set contract interface
      
      * use LruCache in node-filter instead of HashMap
      
      * validator_set engine uses ethabi_derive
      
      * ethcore does not depend on native_contracts
      
      * miner does no depend on native_contracts
      
      * secret_store does not use native_contracts (in progress)
      
      * removed native-contracts
      
      * ethcore and updater does not depend on futures
      
      * updated ethereum-types
      
      * fixed all warnings caused by using new version of ethereum-types
      
      * updated ethabi_derive && ethabi_contract to get rid of warnings
      
      * removed another retain cycle in updater, fixed following minor version on update
      
      * moved contracts out of native_contracts res
      
      * updated ethabi_contract
      
      * fixed failing test
      
      * fixed failing test
      
      * there is no need to create two contracts of the same kind any more
      
      * simplify updater::ReleaseTrack conversion into u8 and add several tests for it
      
      * applied review suggestions
      
      * applied review suggestions
      c060d958
  12. Jan 19, 2018
  13. Jan 10, 2018
    • Marek Kotewicz's avatar
      dissolve util (#7460) · e95b0934
      Marek Kotewicz authored and Svyatoslav Nikolsky's avatar Svyatoslav Nikolsky committed
      * ethereum-types refactor in progress
      
      * ethereum-types refactor in progress
      
      * ethereum-types refactor in progress
      
      * ethereum-types refactor in progress
      
      * ethereum-types refactor finished
      
      * removed obsolete util/src/lib.rs
      
      * removed commented out code
      e95b0934
  14. Dec 22, 2017
    • Marek Kotewicz's avatar
      parity-version pr reopen (#7136) · d80dd81d
      Marek Kotewicz authored
      * parity-version module split from util
      
      removed unused util deps and features
      
      trigger buildbot again
      
      only kvdb links rocksdb
      
      snappy linker issues
      
      * rm snappy
      
      * fixed old version imports
      d80dd81d
  15. Dec 21, 2017
  16. Dec 13, 2017
  17. Nov 23, 2017
  18. Nov 20, 2017
  19. Nov 14, 2017
  20. Nov 10, 2017
  21. Oct 24, 2017
  22. Oct 17, 2017
  23. Oct 16, 2017
  24. Oct 05, 2017
    • Tomasz Drwięga's avatar
      Update jsonrpc dependencies and rewrite dapps to futures. (#6522) · e8b418ca
      Tomasz Drwięga authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * Bump version.
      
      * Fix RPC crate.
      
      * Fix BoxFuture in crates.
      
      * Compiles and passes tests!
      
      * Get rid of .boxed()
      
      * Fixing issues with the UI.
      
      * Remove minihttp. Support threads.
      
      * Reimplement files serving to do it in chunks.
      
      * Increase chunk size.
      
      * Remove some unecessary copying.
      
      * Fix tests.
      
      * Fix stratum warning and ipfs todo.
      
      * Switch to proper branch of jsonrpc.
      
      * Update Cargo.lock.
      
      * Update docs.
      
      * Include dapps-glue in workspace.
      
      * fixed merge artifacts
      
      * Fix test compilation.
      e8b418ca
  25. Sep 15, 2017
  26. Sep 04, 2017
  27. Sep 02, 2017
  28. Aug 31, 2017
  29. Aug 28, 2017
    • Tomasz Drwięga's avatar
      Expose health status over RPC (#6274) · 3226e1ca
      Tomasz Drwięga authored
      * Node-health to a separate crate.
      
      * Initialize node_health outside of dapps.
      
      * Expose health over RPC.
      
      * Bring back 412 and fix JS.
      
      * Add health to workspace and tests.
      
      * Fix compilation without default features.
      
      * Fix borked merge.
      
      * Revert to generics to avoid virtual calls.
      
      * Fix node-health tests.
      
      * Add missing trailing comma.
      3226e1ca
  30. Aug 17, 2017
  31. Aug 10, 2017
  32. Aug 09, 2017
    • Craig O'Connor's avatar
      Dapp refresh (#5752) · 7d17d772
      Craig O'Connor authored
      * RwLock
      
      * getting there
      
      * argh
      
      * parking_lot
      
      * rpc
      
      * wax on wax off
      
      * almost there
      
      * remove lock
      
      * write over read
      
      * works
      
      * linting
      
      * small updates
      
      * dissapearing act
      
      * router update
      
      * complete
      
      * one m
      
      * grumbles1
      
      * grumbles part II
      
      * parking_lot->util
      
      * missed test case
      
      * fied package-lock.json
      
      * small fixes
      
      * 404 tests failing
      
      * cleanup
      
      * cleanup 2
      
      * updates and the likes
      
      * play
      
      * simplify filter
      
      * f-ing bugs
      
      * read->write
      
      * Address own grumbles.
      
      * Fix test.
      7d17d772
    • Tomasz Drwięga's avatar
      Using multiple NTP servers (#6173) · e93466c8
      Tomasz Drwięga authored and Marek Kotewicz's avatar Marek Kotewicz committed
      * Small improvements to time estimation.
      
      * Allow multiple NTP servers to be used.
      
      * Removing boxing.
      
      * Be nice.
      
      * Be nicer.
      
      * Update list of servers and add reference.
      e93466c8