1. Sep 12, 2017
  2. Sep 10, 2017
    • Nicolas Gotchac's avatar
      Fix slow balances (#6471) · f1a05036
      Nicolas Gotchac authored
      * Update token updates
      
      * Update token info fetching
      
      * Update logger
      
      * Minor fixes to updates and notifications for balances
      
      * Use Pubsub
      
      * Fix timeout.
      
      * Use pubsub for status.
      
      * Fix signer subscription.
      
      * Process tokens in chunks.
      
      * Fix tokens loaded by chunks
      
      * Linting
      
      * Dispatch tokens asap
      
      * Fix chunks processing.
      
      * Better filter options
      
      * Parallel log fetching.
      
      * Fix signer polling.
      
      * Fix initial block query.
      
      * Token balances updates : the right(er) way
      
      * Better tokens info fetching
      
      * Fixes in token data fetching
      
      * Only fetch what's needed (tokens)
      
      * Fix linting issues
      
      * Revert "Transaction permissioning (#6441)"
      
      This reverts commit eed0e8b0.
      
      * Revert "Revert "Transaction permissioning (#6441)""
      
      This reverts commit 8f96415e58dde652e5828706eb2639d43416f448.
      
      * Update wasm-tests.
      
      * Fixing balances fetching
      
      * Fix requests tracking in UI
      
      * Fix request watching
      
      * Update the Logger
      
      * PR Grumbles Fixes
      
      * PR Grumbles fixes
      
      * Linting...
      f1a05036
  3. Sep 05, 2017
  4. Sep 04, 2017
  5. Sep 02, 2017
  6. Aug 30, 2017
  7. Aug 28, 2017
  8. Aug 23, 2017
  9. Aug 22, 2017
  10. Aug 21, 2017
  11. Aug 17, 2017
  12. Aug 15, 2017
  13. Aug 14, 2017
  14. Aug 04, 2017
    • Tomasz Drwięga's avatar
      Multi-call RPC (#6195) · f157461e
      Tomasz Drwięga authored and Marek Kotewicz's avatar Marek Kotewicz committed
      * Removing duplicated pending state accessors in miner.
      
      * Merge miner+client call.
      
      * Multicall & multicall RPC.
      
      * Sensible defaults.
      
      * Fix tests.
      f157461e
  15. Aug 01, 2017
  16. Jul 28, 2017
  17. Jul 13, 2017
    • 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
  18. Jul 12, 2017
  19. Jul 10, 2017
  20. Jun 30, 2017
  21. Jun 29, 2017
    • Vurich's avatar
      Upgrade `elastic-array` to 0.9.0 · 3d8dc114
      Vurich authored
      This is a huge change, which includes some changes to replace code that
      originally cloned to reuse allocations instead. The updated
      `elastic-array` crate renames its consuming `Vec`-conversion method to
      `into_vec`, which means that I can do a simple
      `sed -i 's/to_vec/into_vec/'` and then fix the compilation errors.
      
      This commit is probably a minor performance win and definitely a
      significant readability win.
      3d8dc114
  22. Jun 28, 2017
    • asynchronous rob's avatar
      PoA: Wait for transition finality before applying (#5774) · d069b98b
      asynchronous rob authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * final engine changes
      
      * migration to v13
      
      * adding and removing pending transitions
      
      * epoch_transition_for
      
      * port snapshot to new engine methods
      
      * final validator set interface
      
      * fix compiler errors
      
      * revert v13/epoch_depth transition
      
      * make call on new epoch
      
      * rolling finality checker
      
      * tests for finality checker
      
      * constructing finality proof upon pending transition
      
      * fix warnings and finality proof checking
      
      * fix compiler warnings in tests
      
      * test fixes
      
      * don't include genesis in finality checking
      
      * change snapshot test chain building logic
      
      * minor refactorings
      
      * fetch epoch transition based on parent, fix divide-by-zero in SimpleList
      
      * fix formatting
      
      * fix ABIs and finality checking in snapshot restoration
      
      * encode signal number in proof
      
      * create more blocks at the end of tests
      
      * update gist to accurate contract code
      
      * test for epoch_transition_for
      
      * fix tests with immediateTransitions parameter
      
      * disable force flag after forcing
      
      * rename ValidatorsChanged to InitiateChange and finalizeSignal to finalizeChange
      
      * a few more validator set tests
      d069b98b
    • Arkadiy Paronyan's avatar
      EIP-168, 169: Dust protection (#4757) · 57626b60
      Arkadiy Paronyan authored
      * Dust protection
      
      * Track touched accounts in the substate
      
      * Minor alterations
      57626b60
  23. Jun 22, 2017
  24. May 30, 2017
  25. May 24, 2017
    • Nikolay Volf's avatar
      Update dependencies and bigint api (#5685) · e1fef5c7
      Nikolay Volf authored and Arkadiy Paronyan's avatar Arkadiy Paronyan committed
      * update to latest bigint
      
      * bump elastic array and deps
      
      * fix rlp tests
      
      * also update all smallvec deps
      
      * fix doc test
      
      * reduce parking in attempt to fix CI bug
      
      * fix from/into electum bug
      
      * remove duplicate imports
      e1fef5c7
  26. May 17, 2017
    • asynchronous rob's avatar
      PoA warp implementation (#5488) · 4c5e4ac8
      asynchronous rob authored
      * separate modules for consensus snapshot chunks
      
      * bulk of authority warp logic
      
      * finish authority warp implementation
      
      * squash warnings and enable authority snapshot mode
      
      * test harness for PoA
      
      * fiddle with harness
      
      * epoch generation proof fixes
      
      * update constructor code
      
      * store epoch transition proof after block commit
      
      * basic snap and restore test
      
      * use keyvaluedb in state restoration
      
      * decompress chunks
      
      * fix encoding issues
      
      * fixed-to-contract-to-contract test
      
      * implement ancient block import
      
      * restore genesis transition in PoW snapshot
      
      * add format version method to snapshot components
      
      * supported version numbers in snapshot_components
      
      * allow returning of ancient epoch transitions
      
      * genesis hash mismatch check
      
      * remove commented code
      4c5e4ac8
  27. May 05, 2017
  28. May 03, 2017
    • asynchronous rob's avatar
      Calculate post-constructors state root in spec at load time (#5523) · 60bb0de9
      asynchronous rob authored
      * apply contract constructors at spec load time
      
      * debugging
      
      * do trie updates in two stages
      
      * add lint exception to newly-dead constructor
      
      * squash warning in RPC tests
      
      * kill dead accountdb constructors
      
      * restore accountdb constructors under test configuration
      
      * use provided state root in spec, if it exists
      60bb0de9
  29. Apr 24, 2017
  30. Apr 22, 2017
  31. Apr 20, 2017