1. Dec 21, 2017
  2. 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
  3. Nov 25, 2017
  4. Nov 13, 2017
  5. Nov 10, 2017
  6. Oct 17, 2017
  7. Oct 16, 2017
  8. Oct 12, 2017
  9. 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
  10. 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
  11. Sep 15, 2017
  12. 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
  13. Sep 04, 2017
  14. Sep 02, 2017
  15. Aug 31, 2017
  16. Aug 29, 2017
  17. 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
  18. Aug 08, 2017
  19. 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
  20. 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
  21. 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
  22. 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
  23. 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
  24. Jul 06, 2017
  25. Jul 04, 2017
  26. Jun 27, 2017
  27. Jun 22, 2017
  28. Jun 19, 2017
  29. 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
  30. Jun 09, 2017
  31. 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
  32. May 23, 2017
  33. Apr 13, 2017
  34. Apr 03, 2017
    • Svyatoslav Nikolsky's avatar
      Secretstore over network (#4974) · c0c06fdc
      Svyatoslav Nikolsky authored
      * ECDKG protocol prototype
      
      * added test for enc/dec math
      
      * get rid of decryption_session
      
      * added licenses
      
      * fix after merge
      
      * get rid of unused serde dependency
      
      * doc
      
      * decryption session [without commutative enc]
      
      * failed_dec_session
      
      * fixed tests
      
      * added commen
      
      * added more decryption session tests
      
      * helper to localize an issue
      
      * more computations to localize error
      
      * decryption_session::SessionParams
      
      * added tests for EC math to localize problem
      
      * secretstore network transport
      
      * encryption_session_works_over_network
      
      * network errors processing
      
      * connecting to KeyServer
      
      * licenses
      
      * get rid of debug println-s
      
      * fixed secretstore args
      
      * encryption results are stored in KS database
      
      * decryption protocol works over network
      
      * enc/dec Session traits
      
      * fixing warnings
      
      * fix after merge
      
      * finally fixed <odd>-of-N-scheme
      
      * temporary commented test
      
      * 1-of-N works in math
      
      * scheme 1-of-N works
      
      * remove unnecessary unsafety
      
      * fixed grumbles
      
      * fix grumbles
      
      * lost files
      c0c06fdc
    • Tomasz Drwięga's avatar
      Dapps and RPC server merge (#5365) · 2df4532d
      Tomasz Drwięga authored
      * Dapps server as a middleware.
      
      * Dapps RPC - Work in Progress
      
      * Merging Dapps and RPC server.
      
      * Fast HTTP server configuration.
      
      * Bump jsonrpc
      
      * Fixing test target
      
      * Re-implementing commented-out tests.
      2df4532d
  35. Mar 28, 2017
    • Marek Kotewicz's avatar
      updating dependencies (#5028) · 64c09862
      Marek Kotewicz authored
      * updated docopt, env_logger, semver and regex crates
      
      * updated parking_lot to 0.4
      
      * fixed compiling on linux
      
      * updated igd to 0.6
      
      * updated jsonrpc
      
      * fixed regex related compiler error on linux
      64c09862
  36. Mar 23, 2017