1. Jan 11, 2018
  2. 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
  3. Jan 02, 2018
  4. Dec 26, 2017
    • Nicolas Ochem's avatar
      Fix #6209 - introduce standalone dir crate · 2e12a2db
      Nicolas Ochem authored
      * created the dir crate in util
      * moved code from ethstore/src/dir/paths.rs to dir crate
      * rename dir module in ethstore to accounts_dir to distinguish it
        from the dir crate
      * changes after @tomusdrw on #6952
      2e12a2db
  5. 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
  6. Dec 21, 2017
  7. Dec 19, 2017
    • Tomasz Drwięga's avatar
      Transaction Pool re-implementation (#6994) · 1d920673
      Tomasz Drwięga authored
      * Initial design and some tests.
      
      * Insertion & limits.
      
      * Constructing pending block.
      
      * Change to PendingIterator.
      
      * Removing/cancelling transactions.
      
      * Full status.
      
      * Culling transactions.
      
      * Use bigint.
      
      * Add listener tests.
      
      * Clean up listener types.
      
      * Split into multiple files.
      
      * Add copyright notice.
      
      * Documentation.
      
      * Don't require ownership.
      
      * Fix cull to remove from by_hash.
      
      * Make the queue generic over transactions.
      
      * Address code review.
      
      * Update wasm submodules.
      
      * Fix review grumbles.
      
      * Add some docs.
      1d920673
  8. Nov 25, 2017
  9. Nov 13, 2017
  10. Nov 10, 2017
  11. Oct 17, 2017
  12. Oct 16, 2017
  13. Oct 12, 2017
  14. Oct 10, 2017
    • Marek Kotewicz's avatar
      Separate migrations from util (#6690) · 6279ff32
      Marek Kotewicz authored
      * separate migration from util and make its dependencies into libs:
      
      * snappy
      * kvdb
      * error
      * common
      
      * renamed common -> macros
      
      * util error does not depend on snappy module
      
      * ethsync does not depend on util nor ethcore_error
      
      * nibbleslice and nibblevec merged with patricia_trie crate
      
      * removed unused dependencies from util
      
      * util journaldb traits does not need to be public
      
      * util_error
      
      * fixed ethcore compile error
      
      * ignore .swo files
      
      * Update chain.rs
      6279ff32
  15. 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
  16. Sep 15, 2017
  17. Sep 05, 2017
    • Axel Chalon's avatar
      Refactor and port CLI from Docopt to Clap (#2066) (#6356) · be745f71
      Axel Chalon authored
      * Refactor and port CLI from Docopt to Clap (#2066)
      
      * Add --can-restart and --force-direct to help
      
      * Add flag support to subc & move import/export options to subcommand
      
      * Reorder subcommand args (put positional args last in CLI help message)
      be745f71
  18. Sep 04, 2017
  19. Sep 02, 2017
  20. Aug 31, 2017
  21. Aug 29, 2017
  22. 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
  23. Aug 08, 2017
  24. 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
  25. Jul 28, 2017
    • Joseph Mark's avatar
      Refactor --allow-ips to handle custom ip-ranges (#6144) · b5f1524e
      Joseph Mark authored
      * Add checks for additional reserved ip addresses
      
      100.64.0.0/10 and 240.0.0.0/4 are both reserved but not currently
      filtered.
      
      * Add check for special purpose addresses
      
      192.0.0.0/24 - Used for the IANA IPv4 Special Purpose Address Registry
      
      * Refactor ip_utils (#5872)
      
      * Add checks for all ipv4 special use addresses
      * Add comprehensive ipv4 test cases
      
      * Refactor Ipv6 address checks (#5872)
      
      * Refactor AllowIP (#5872)
      
      * Add IpFilter struct to wrap predefined filter (AllowIP) with custom
      allow/block filters.
      * Refactor parsing of --allow-ips to handle custom filters.
      * Move AllowIP/IpFilter from ethsync to ethcore-network where they
      are used.
      
      * Revert Cargo.lock
      
      * Tests for custom ip filters (#5872)
      
      * Add "none" as a valid argument for --allow-ips to allow narrow
      custom ranges, eg.: --allow-ips="none 10.0.0.0/8"
      * Add tests for parsing filter arguments and node endpoints.
      * Add ipnetwork crate to dev dependencies for testing.
      
      * Add ipv6 filter tests (#5872)
      
      * Revert parity-ui-precompiled to master
      
      * Fix minor detail in usage.txt (#5872)
      
      * Spaces to tabs
      
      * Rename IpFilter::new() to ::default()
      
      * Small readability improvements
      
      * Test (#5872)
      
      * Revert "Test (#5872)"
      
      This reverts commit 7a8906430a6dad633fe29df3dca57f1630851fa9.
      b5f1524e
  26. Jul 19, 2017
    • Brian Anderson's avatar
      Add custom panic hook · 6345b540
      Brian Anderson authored
      The panic hook prints a backtrace, the panic message, file, and line
      number, and a plea to report bugs.
      6345b540
  27. 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
  28. Jul 11, 2017
    • Tomasz Drwięga's avatar
      Node Health warnings (#5951) · 4936e99f
      Tomasz Drwięga authored
      * Health endpoint.
      
      * Asynchronous health endpoint.
      
      * Configure time api URL via CLI.
      
      * Tests for TimeChecker.
      
      * Health indication on Status page.
      
      * Adding status indication to tab titles.
      
      * Add status to ParityBar.
      
      * Fixing lints.
      
      * Add health status on SyncWarning.
      
      * Fix health URL for embed.
      
      * Nicer messages.
      
      * Fix tests.
      
      * Fixing JS tests.
      
      * NTP time sync (#5956)
      
      * use NTP to check time drift
      
      * update time module documentation
      
      * replace time_api flag with ntp_server
      
      * fix TimeChecker tests
      
      * fix ntp-server flag usage
      
      * hide status tooltip if there's no message to show
      
      * remove TimeProvider trait
      
      * use Cell in FakeNtp test trait
      
      * share fetch client and ntp client cpu pool
      
      * Add documentation to public method.
      
      * Removing peer count from status.
      
      * Remove unknown upgrade status.
      
      * Send two time requests at the time.
      
      * Revert "Send two time requests at the time."
      
      This reverts commit f7b754b1155076a5a5d8fdafa022801fae324452.
      
      * Defer reporting time synchronization issues.
      
      * Fix tests.
      
      * Fix linting.
      4936e99f
  29. Jul 06, 2017
  30. Jul 04, 2017
  31. Jun 27, 2017
  32. Jun 22, 2017
  33. Jun 19, 2017
  34. Jun 13, 2017
    • Jaco Greeff's avatar
      Merge branch 'master' into ui-2 · 7bbd48a2
      Jaco Greeff authored
      # Conflicts:
      #	js/package.json
      #	js/src/api/local/ethkey/worker.js
      #	js/src/modals/FirstRun/TnC/tnc.js
      #	js/src/modals/FirstRun/Welcome/welcome.js
      #	js/src/ui/Form/Input/input.js
      #	js/src/ui/VaultCard/Accounts/accounts.spec.js
      #	js/src/views/Accounts/accounts.js
      #	js/src/views/Application/TabBar/tabBar.js
      #	js/src/views/Settings/Views/defaults.js
      #	js/src/views/Settings/Views/views.js
      #	js/webpack/app.js
      #	js/webpack/libraries.js
      7bbd48a2
  35. Jun 09, 2017
  36. May 24, 2017
    • Tomasz Drwięga's avatar
      UI server refactoring (#5580) · cbcc369a
      Tomasz Drwięga authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * Full API in Authenticated WS server.
      
      * Replacing UI server with Hyper.
      
      * Solving CLI, RPCs and tests.
      
      * Porting signer tests.
      
      * Fixing origin recognition for dapps/rpc.
      
      * Fixing tests. Adding parity-rpc-client to test.
      
      * Dapps exposed as RPC method.
      
      * JS code to support new connection scheme.
      
      * Fixing dapps tests.
      
      * Updating allowed origins/hosts to support web3.site.
      
      * Fixing tests, fixing UI.
      
      * Fixing tests.
      
      * Removing invalid tests.
      
      * Fixing merge.
      
      * 404 fallback for UI
      
      * Improve ContentFetcher constructor readability.
      
      * Naming.
      
      * Update .gitlab-ci.yml
      
      fix CI lint error
      
      * Fixing tests and linting issues.
      
      * Fixing new tests.
      
      * UI hosts.
      
      * Submodules fix.
      cbcc369a
  37. May 23, 2017