Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CHRON-9704] Update Blockchain Interface to Parity v2.5.9-stable #41

Merged
merged 169 commits into from
Oct 4, 2019

Commits on Jan 10, 2019

  1. Merge Machine and WithRewards (#10071)

    tomaka authored and 5chdn committed Jan 10, 2019
    Configuration menu
    Copy the full SHA
    eea3de0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38af7f3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eea5f6f View commit details
    Browse the repository at this point in the history
  4. Ping nodes from discovery (#10167)

    kirushik authored and debris committed Jan 10, 2019
    Configuration menu
    Copy the full SHA
    83f7061 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2019

  1. Bump JSON-RPC (#10151)

    * Bump JSON-RPC
    
    * Fix test casing.
    tomusdrw authored and niklasad1 committed Jan 11, 2019
    Configuration menu
    Copy the full SHA
    83ba9df View commit details
    Browse the repository at this point in the history
  2. fix(whisper): correct PoW calculation (#10166)

    * Fix off-by-one error on `leading_zeros` which was used to index in the hash to get leading zeros when not aligned on byte boundary (i.e, all the bits in a byte was not zero such as 0001 1111)
    * Fix overflow by shifting with bigger value than 63
    niklasad1 authored and sorpaas committed Jan 11, 2019
    Configuration menu
    Copy the full SHA
    67eee6a View commit details
    Browse the repository at this point in the history
  3. Fix _cannot recursively call into Core_ issue (#10144)

    * Change igd to github:maufl/rust-igd
    
    * Run `igd::search_gateway_from_timeout` from own thread
    ngotchac authored and sorpaas committed Jan 11, 2019
    Configuration menu
    Copy the full SHA
    3687df8 View commit details
    Browse the repository at this point in the history
  4. Fix #9822: trace_filter does not return failed contract creation (#10…

    …140)
    
    currently trace_filter can't return failed contract creation transaction
    but trace_block can query the failed contract creation transaction.it
    because the logic of parity-ethereum/ethcore/src/trace/types/filter.rs
    Line 109 in 9982eba
    ```
     _ => false
    ```
    
    this patch correct the logic:
    ```
     _ => self.to_address.matches_all()
    ```
    
    Signed-off-by: Deshi Xiao <xiaods@gmail.com>
    tomusdrw authored and sorpaas committed Jan 11, 2019
    Configuration menu
    Copy the full SHA
    1ac1224 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2019

  1. Configuration menu
    Copy the full SHA
    181738a View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2019

  1. Configuration menu
    Copy the full SHA
    e8e087f View commit details
    Browse the repository at this point in the history
  2. version: bump nightly to 2.4 (#10165)

    * version: bump nightly to 2.4
    
    * revert rand downgrade
    5chdn authored Jan 14, 2019
    Configuration menu
    Copy the full SHA
    d356c66 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2019

  1. Configuration menu
    Copy the full SHA
    53a04e1 View commit details
    Browse the repository at this point in the history
  2. Align personal_unlockAccount behaviour when permanent unlock is disab…

    …led (#10060)
    
    * align with docs
    
    > If permanent unlocking is disabled (the default) then the duration argument will be ignored, and the account will be unlocked for a single signing.
    
    Current behaviour throws an error that is no longer relevant.
    
    * fix test
    
    * Change back to throwing error
    
    * Fix test again
    
    * formatting
    
    * oops
    
    * whitespace fixes
    jam10o-new authored and tomusdrw committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    0edf8e3 View commit details
    Browse the repository at this point in the history
  3. Handle the case for contract creation on an empty but exist account w…

    …ith storage items (#10065)
    
    * Add is_base_storage_root_unchanged
    
    * Fix compile, use a shortcut for check, and remove ignored tests
    
    * Add a warn!
    
    * Update ethereum/tests to v6.0.0-beta.2
    
    * grumble: use {:#x} instead of 0x{:x}
    
    Co-Authored-By: sorpaas <accounts@that.world>
    sorpaas authored and niklasad1 committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    64704c4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    53c408f View commit details
    Browse the repository at this point in the history
  5. Update for Android cross-compilation. (#10180)

    * build-unix update
    
    * .gitlab-ci update
    
    * Update build-unix.sh
    
    add android postprocessing
    
    * path to android lib
    
    libparity.so
    
    * fix path to libparity
    
    * add android lib to artifacts
    TriplEight authored Jan 15, 2019
    Configuration menu
    Copy the full SHA
    ed6f287 View commit details
    Browse the repository at this point in the history
  6. pull constantinople on ethereum network (#10189)

    * ethcore: pull constantinople on ethereum network
    
    * version: mark update as critical
    
    * ethcore: remove constantinople alltogether from chain spec
    
    * version: revert fork block for ethereum
    5chdn authored Jan 15, 2019
    Configuration menu
    Copy the full SHA
    a6c6c7c View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2019

  1. Configuration menu
    Copy the full SHA
    1df6361 View commit details
    Browse the repository at this point in the history
  2. Adds cli interface to allow reseting chain to a particular block (#9782)

    * added BlockChainReset trait, client impl, and cli interface
    
    * show block hashes to be deleted and new best block, update best block in db, better cli interface
    
    * delete BlockNumber from COL_EXTRA
    
    * add TODO comment
    
    * add BlockReciepts to imports
    
    * refactor block_headers_from_best_block, better cli documentation
    
    * exit gracefully if reset arg isn't supplied
    
    * fix cli usage macro
    
    * removed stray int literals
    
    * use Vec::with_capacity
    
    Co-Authored-By: seunlanlege <seunlanlege@gmail.com>
    
    * cast n to usize
    
    * correct imports
    
    * make db reset arg required
    seunlanlege authored and 5chdn committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    cdba22a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cf50513 View commit details
    Browse the repository at this point in the history
  4. Update the changelogs for 2.1.11, 2.2.6, 2.2.7, and 2.3.0 (#10197)

    * docs: move 2.2 changelog to docs/
    
    * docs: mark parity 2.1 end of life
    
    * docs: add changelog for 2.1.11
    
    * docs: add changelog for 2.2.6
    
    * docs: add changelog for 2.2.7
    
    * docs: add changelog for 2.3.0
    
    * docs: add release notes for 2.3.0
    5chdn authored and sorpaas committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    4f1e1e8 View commit details
    Browse the repository at this point in the history
  5. Extract CallContract and RegistryInfo traits into their own crate (#1…

    …0178)
    
    * Create call-contract crate
    
    * Add license
    
    * First attempt at using extracted CallContract trait
    
    * Remove unneeded `extern crate` calls
    
    * Move RegistryInfo trait into call-contract crate
    
    * Move service-transaction-checker from ethcore to ethcore-miner
    
    * Update Cargo.lock file
    
    * Re-export call_contract
    
    * Merge CallContract and RegistryInfo imports
    
    * Remove commented code
    
    * Add documentation to call_contract crate
    
    * Add TODO for removal of re-exports
    
    * Update call-contract crate description
    
    Co-Authored-By: HCastano <HCastano@users.noreply.github.com>
    
    * Rename call-contract crate to ethcore-call-contract
    HCastano authored and niklasad1 committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    35bbf11 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2019

  1. Remove CallContract and RegistryInfo re-exports from ethcore/client

    … (#10205)
    
    * Remove re-export of `CallContract` and `RegistryInfo` from `ethcore/client`
    
    * Remove CallContract and RegistryInfo re-exports again
    
    This was missed while fixing merge conflicts
    HCastano authored Jan 17, 2019
    Configuration menu
    Copy the full SHA
    2a7ed45 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2019

  1. perform stripping during build (#10208)

    * perform stripping during build
    
    * var RUSTFLAGS
    General-Beck authored and TriplEight committed Jan 18, 2019
    Configuration menu
    Copy the full SHA
    460681e View commit details
    Browse the repository at this point in the history
  2. Happy New Year! (#10211)

    * Happy New Year!
    
    * Happy New Year!
    
    * Update README.md
    fubuloubu authored and tomusdrw committed Jan 18, 2019
    Configuration menu
    Copy the full SHA
    708e495 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2019

  1. Echo CORS request headers by default (#10221)

    * Echo CORS request headers by default
    
    More details in openethereum/parity-ethereum#6616.
    
    * fixup: Single line
    cmichi authored and ascjones committed Jan 21, 2019
    Configuration menu
    Copy the full SHA
    940a88f View commit details
    Browse the repository at this point in the history
  2. Add EIP-1283 disable transition (#10214)

    sorpaas authored and 5chdn committed Jan 21, 2019
    Configuration menu
    Copy the full SHA
    fb07ffa View commit details
    Browse the repository at this point in the history
  3. Enable St-Peters-Fork ("Constantinople Fix") (#10223)

    * ethcore: disable eip-1283 on kovan block 10255201
    
    * ethcore: disable eip-1283 on ropsten block 4939394
    
    * ethcore: enable st-peters-fork on mainnet block 7280000
    
    * ethcore: fix kovan chain spec
    
    * version: update fork blocks
    
    * ethcore: disable eip-1283 on sokol block 7026400
    5chdn authored Jan 21, 2019
    Configuration menu
    Copy the full SHA
    a9a278a View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2019

  1. import rpc transactions sequentially (#10051)

    * import rpc transactions sequentially
    
    * use impl trait in argument position, renamed ProspectiveDispatcher to WithPostSign
    
    * grouped imports
    
    * integrates PostSign with ProspectiveSigner
    
    * fix spaces, removed unnecessary type cast and duplicate polling
    
    * clean up code style
    
    * Apply suggestions from code review
    seunlanlege authored and tomusdrw committed Jan 22, 2019
    Configuration menu
    Copy the full SHA
    c35abe4 View commit details
    Browse the repository at this point in the history
  2. fix(ManageNetwork): replace Range with RangeInclusive (#10209)

    * fix(ManageNetwork): replace Range -> RangeIncls
    
    Fixes `TODO: Range should be changed to RangeInclusive once stable (https://github.com/rust-lang/rust/pull/50758)`
    
    * fix(tests)
    
    * fix(grumbles): off-by-one error in debug_asserts
    
    * RangeInclusive::end() is inclusive which means that if start and end is equal the `debug_assert(range.end() >
    range.start()` will fail which is shouldn't
    niklasad1 authored Jan 22, 2019
    Configuration menu
    Copy the full SHA
    4b11d79 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2de31e View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2019

  1. Update copyright year to 2019. (#10181)

    * Update copyright year to 2019.
    
    Have a great year.
    
    * add `(UK)`
    
    * 2018-2019
    shao1555 authored and ascjones committed Jan 23, 2019
    Configuration menu
    Copy the full SHA
    c96d8a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4fec2f2 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2019

  1. Update CHANGELOG.md (#10249)

    change 2018 to 2019
    thefallentree authored and 5chdn committed Jan 28, 2019
    Configuration menu
    Copy the full SHA
    38f3747 View commit details
    Browse the repository at this point in the history
  2. Take in account zero gas price certification when doing transact_cont…

    …ract (#10232)
    
    * Tx permission contract improvement
    
    * Take in account zero gas price certification when doing transact_contract
    
    * DRY in ServiceTransactionChecker
    
    * Fix typos and regroup mod
    
    * Fix imports
    
    * Simplify code in struct instantiation
    
    Co-Authored-By: VladLupashevskyi <vlad@lupashevskyi.com>
    VladLupashevskyi authored and 5chdn committed Jan 28, 2019
    Configuration menu
    Copy the full SHA
    94db961 View commit details
    Browse the repository at this point in the history
  3. Allow specifying local accounts via CLI (#9960)

    * Allow specifying local accounts via CLI
    
     * Add `tx-queue-locals` CLI option
     * ethcore: modify miner to check options vec before importing transaction
     * modify tests (ethcore/parity)
    Resolves #9634
    
    * fix formatting
    
    * fixes: Make prefer HashSet over Vec<>, add test, comment formatting
    
    * Update ethcore/src/miner/miner.rs
    
    Co-Authored-By: insipx <aplaza@liquidthink.net>
    
    * Fix comments and add helper for set->vec conversion
    
    * remove blank line from use statement
    
    * fix helper test
    
    * formatting
    
    * fix test to pass on nightly
    
    * revert test fix for nightly
    insipx authored and 5chdn committed Jan 28, 2019
    Configuration menu
    Copy the full SHA
    50f5ccc View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2019

  1. Macos heapsize force jemalloc (#10234)

    * Switch to non prefixed malloc_size_of on macos
    
    * Fix
    
    * Testing darwin build
    
    * Fix import
    
    * conflict
    
    * switch heapsize deps commit
    
    * switch heapsize commit
    
    * Rename branch
    
    * Restore gitlab ci to origin
    
    * test for mac
    
    * mac tests?
    
    * Switch of macos CI tests.
    cheme authored and 5chdn committed Jan 29, 2019
    Configuration menu
    Copy the full SHA
    a139c6d View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG-2.2.md (#10254)

    gmajoulet authored and niklasad1 committed Jan 29, 2019
    Configuration menu
    Copy the full SHA
    eb3d33e View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2019

  1. Configuration menu
    Copy the full SHA
    12c42bc View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2019

  1. prevent silent errors in daemon mode (#10007)

    * prevent silent errors in daemon mode
    
    * change author in Cargo.toml, add preamble to pipe.rs
    
    * set the uid and gid on daemon process, fix permission errors when writing to pid file
    
    * call setup_logger before daemonize to prevent crashing when attempting to create logfile
    
    * map_err for calls to splice and ioctl, fix spaces in Cargo.toml
    
    * split out daemonize to own repo
    
    * removed util/daemonize
    
    * renamed dep to parity-daemonize
    
    * fix(parity-clib): enable `logger`
    
    * bump parity-daemonize
    
    * remove obsolete comment
    
    Co-Authored-By: seunlanlege <seunlanlege@gmail.com>
    
    * fix(grumbles): docs and log in ParityParams
    
    * Add FIXME comment regarding @tomaka grumbles
    * Unify logger with the C-API in ParityParams (less type-safety with more from_raw() conversions)
    * Add better documentation in the `parity.h`
    
    * Apply suggestions from code review
    
    Co-Authored-By: seunlanlege <seunlanlege@gmail.com>
    
    * docs(parity lib): add link to logging issue
    
    * fix(parity-clib): JNI enable `logger`
    
    * fix(parity-clib): update `Java example`
    
    * Update example to the API changes
    * Remove needless printouts which can be controlled via logger instead
    seunlanlege authored and 5chdn committed Feb 1, 2019
    Configuration menu
    Copy the full SHA
    0f9b221 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2019

  1. Configuration menu
    Copy the full SHA
    3b23c2e View commit details
    Browse the repository at this point in the history
  2. Don't run the CPP example on CI (#10285)

    * Don't run the CPP example on CI
    
    * Add comment
    tomaka authored and kirushik committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    12ac992 View commit details
    Browse the repository at this point in the history
  3. Fix Windows build (#10284)

    tomaka authored and 5chdn committed Feb 3, 2019
    Configuration menu
    Copy the full SHA
    06cae8a View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2019

  1. Convert to jsonrpc-derive, use jsonrpc-* from crates.io (#10298)

    * Use jsonrpc crates on local path
    
    * Convert all RPC traits to use jsonrpc-derive
    
    * Use local jsonrpc at top level
    
    * Upgrade remaining jsonrpc dependencies
    
    * Checkout Cargo.lock to master HEAD
    
    * Use jsonrpc-* 10.0.1 from crates.io
    
    * Attribute after docs
    ascjones authored and sorpaas committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    89ae0f0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1b3b9b2 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2019

  1. fix(secret-store): deprecation warning (#10301)

    use of deprecated item 'core::str::<impl str>::trim_left_matches': superseded by `trim_start_matches`
    niklasad1 authored and ordian committed Feb 6, 2019
    Configuration menu
    Copy the full SHA
    8ab6d89 View commit details
    Browse the repository at this point in the history
  2. update ring to 0.14 (#10262)

    * cargo upgrade hyper-rustls --all
    
    * cargo upgrade parity-crypto --all
    
    * update Cargo.lock
    
    * propagate NonZeroU32
    
    * use NonZeroU32::new_unchecked for crypto::KEY_ITERATIONS
    
    * update Cargo.lock
    
    * replace unsafe code with lazy_static
    ordian authored and niklasad1 committed Feb 6, 2019
    Configuration menu
    Copy the full SHA
    a3e39c9 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2019

  1. Call private contract methods from another private contract (read-onl…

    …y) (#10086)
    
    * Patch available private contracts during private transaction
    
    * Key acl ABI added
    
    * Work with secret store keys moved to the separate struct
    
    * Private tx test refactored
    
    * Revert "Private tx test refactored"
    
    This reverts commit 476c132d692c7a886bc7b7cd7fe47b3d7692bd63.
    
    * Test for calling private contract from another one added
    
    * Test fixed
    
    * Redundant tab removed
    
    * ACL contract processing fixed, test added
    
    * Merge with head
    
    * Expect replaced with closure
    grbIzl authored and 5chdn committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    45d7c60 View commit details
    Browse the repository at this point in the history
  2. Add missing step for Using systemd service file (#10175)

    * Add missing step for  Using `systemd` service file
    
    Copy Parity release from target folder to bin, write `cp -R ./target/release/parity /usr/bin/` to match `ExecStart=/usr/bin/parity --config /etc/parity/config.toml` from `https://github.com/paritytech/parity-ethereum/blob/master/scripts/parity.service`
    
    * Copy release to bin folder using sudo install
    
    `sudo install ./target/release/parity /usr/bin/parity`
    bneiluj authored and jam10o-new committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    e344286 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e45ee6c View commit details
    Browse the repository at this point in the history
  4. Properly handle check_epoch_end_signal errors (#10015)

    * Make check_epoch_end_signal to only use immutable data
    
    * Move check_epoch_end_signals out of commit_block
    
    * Make check_epoch_end_signals possible to fail
    
    * Actually return the error from check_epoch_end_signals
    
    * Remove a clone
    
    * Fix import error
    sorpaas authored and 5chdn committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    8fa56ad View commit details
    Browse the repository at this point in the history
  5. Deprecate account management (#10213)

    * Extract accounts from ethcore.
    
    * Fix ethcore.
    
    * Get rid of AccountProvider in test_helpers
    
    * Fix rest of the code.
    
    * Re-use EngineSigner, fix tests.
    
    * Simplify EngineSigner to always have an Address.
    
    * Fix RPC tests.
    
    * Add deprecation notice to RPCs.
    
    * Feature to disable accounts.
    
    * extract accounts in RPC
    
    * Run with accounts in tests.
    
    * Fix RPC compilation and tests.
    
    * Fix compilation of the binary.
    
    * Fix compilation of the binary.
    
    * Fix compilation with accounts enabled.
    
    * Fix tests.
    
    * Update submodule.
    
    * Remove android.
    
    * Use derive for Default
    
    * Don't build secretstore by default.
    
    * Add link to issue.
    
    * Refresh Cargo.lock.
    
    * Fix miner tests.
    
    * Update rpc/Cargo.toml
    
    Co-Authored-By: tomusdrw <tomusdrw@users.noreply.github.com>
    
    * Fix private tests.
    tomusdrw authored and 5chdn committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    d5c19f8 View commit details
    Browse the repository at this point in the history
  6. Increase number of requested block bodies in chain sync (#10247)

    * Increase the number of block bodies requested during Sync.
    
    * Increase the number of block bodies requested during Sync.
    
    * Check if our peer is an older parity client with the bug
      of not handling large requests properly
    
    * Add a ClientVersion struct and a ClientCapabilites trait
    
    * Make ClientVersion its own module
    
    * Refactor and extend use of ClientVersion
    
    * Replace strings with ClientVersion in PeerInfo
    
    * Group further functionality in ClientCapabilities
    
    * Move parity client version data from tuple to its own struct.
    
    * Implement accessor methods for ParityClientData and remove them
    from ClientVersion.
    
    * Minor fixes
    
    * Make functions specific to parity return types specific to parity.
    
    * Test for shorter ID strings
    
    * Fix formatting and remove unneeded dependencies.
    
    * Roll back Cargo.lock
    
    * Commit last Cargo.lock
    
    * Convert from string to ClientVersion
    
    * * When checking if peer accepts service transactions just check
      if it's parity, remove version check.
    
    * Remove dependency on semver in ethcore-sync
    
    * Remove unnecessary String instantiation
    
    * Rename peer_info to peer_version
    
    * Update RPC test helpers
    
    * Simplify From<String>
    
    * Parse static version string only once
    
    * Update RPC tests to new ClientVersion struct
    
    * Document public members
    
    * More robust parsing of ID string
    
    * Minor changes.
    
    * Update version in which large block bodies requests appear.
    
    * Update ethcore/sync/src/block_sync.rs
    
    Co-Authored-By: elferdo <elferdo@gmail.com>
    
    * Update util/network/src/client_version.rs
    
    Co-Authored-By: elferdo <elferdo@gmail.com>
    
    * Update util/network/src/client_version.rs
    
    Co-Authored-By: elferdo <elferdo@gmail.com>
    
    * Update tests.
    
    * Minor fixes.
    elferdo authored and 5chdn committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    b7e8621 View commit details
    Browse the repository at this point in the history
  7. CI optimizations (#10297)

    * CI optimizations
    
    * fix stripping
    
    * new dockerfile
    
    * no need n submodule upd
    
    * review
    
    * moved dockerfile
    
    * it becomes large
    
    * onchain update depends on s3
    
    * fix dependency
    
    * fix cache status
    
    * fix cache status
    
    * new cache status
    TriplEight authored Feb 7, 2019
    Configuration menu
    Copy the full SHA
    83bcb81 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2019

  1. fix: parity-clib/examples/cpp/CMakeLists.txt (#10313)

    * use of ${CMAKE_SHARED_LIBRARY_PREFIX} &
    ${CMAKE_SHARED_LIBRARY_SUFFIX} to support other operating systems.
    aarlt authored and ordian committed Feb 8, 2019
    Configuration menu
    Copy the full SHA
    6fa4b2d View commit details
    Browse the repository at this point in the history
  2. Make specification of protocol in SyncRequester::send_request explici…

    …t (#10295)
    
    * Make the specification of the protocol to which a packet_id belongs to
      explicit when calling "SyncRequester::send_packet".
    
    * Remove "SyncIO::send" and leave only "SyncIO::send_protocol"
    
    * Adapt tests to new code.
    
    * Strengthen tests to check if packet_id and protocol match when sending
    a devp2p packet.
    elferdo authored Feb 8, 2019
    Configuration menu
    Copy the full SHA
    046b8bb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3502b36 View commit details
    Browse the repository at this point in the history
  4. fix publish job (#10317)

    * fix publish job
    
    * dashes and colonels
    TriplEight authored Feb 8, 2019
    Configuration menu
    Copy the full SHA
    8b6c5be View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2019

  1. fix(light-rpc): Make light_sync generic (#10238)

    * fix(light-rpc): Make `light_sync` generic
    
    The motivation behind this change is to easily mock `light-sync` to make it possible to enable `rpc-integration` tests
    for the light-client.
    
    Currently the `rpc's` requires the concrete type `sync::LightSync` which makes it very hard to do so
    
    * fix(bad merge)
    niklasad1 authored and ascjones committed Feb 11, 2019
    Configuration menu
    Copy the full SHA
    751d15e View commit details
    Browse the repository at this point in the history
  2. fix(parity-clib): grumbles that were not addressed in #9920 (#10154)

    * fix(remove needless unsafe blocks)
    
    * style(nits)
    
    * fix(parity-clib): eliminate repetitive event loops
    
    * revert(java bindings): safe rust -> unsafe rust
    
    These functions can still end up with `UB` thus should be unsafe
    
    * fix(grumbles): make Callback trait `pub (crate)`
    niklasad1 authored and 5chdn committed Feb 11, 2019
    Configuration menu
    Copy the full SHA
    c84e574 View commit details
    Browse the repository at this point in the history
  3. Add Statetest support for Constantinople Fix (#10323)

    * Update Ethereum tests repo to v6.0.0-beta.3 tag
    
    * Add spec for St.Peter's / ConstantinopleFix statetests
    HCastano authored and tomusdrw committed Feb 11, 2019
    Configuration menu
    Copy the full SHA
    6dfc1bd View commit details
    Browse the repository at this point in the history
  4. Revive parity_setMinGasPrice RPC call (#10294)

    * Add function to update minimum gas price
    
    * Update TestMinerService to handle min_gas_price changes
    
    * Place minimum gas price test behind feature flag
    
    * Update check for fixed gas pricer to be more explicit
    
    * Use errors::unsupported instead of errors::request_rejected
    
    * Add test that fails to set minimum gas price
    
    * Fix test that should fail when setting new gas price
    
    * Put dev dependencies behind feature flag
    
    * Fix deadlock in set_minimal_gas_price()
    
    * Update RPC tests with mocked error response
    
    * Remove unnecessary cfg flag
    
    * Remove duplicate crate imports
    HCastano authored Feb 11, 2019
    Configuration menu
    Copy the full SHA
    8e866ee View commit details
    Browse the repository at this point in the history
  5. Additional error for invalid gas (#10327)

    * Tag sensible place (ECHECH)
    
    * Additional overflows checks.
    cheme authored and kirushik committed Feb 11, 2019
    Configuration menu
    Copy the full SHA
    d89b8d9 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2019

  1. fix(add helper for timestamp overflows) (#10330)

    * fix(add helper timestamp overflows)
    
    * fix(simplify code)
    
    * fix(make helper private)
    niklasad1 authored and kirushik committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    d8394bd View commit details
    Browse the repository at this point in the history
  2. snap: official image / test (#10168)

    * official image / test
    
    * fix / test
    
    * bit more necromancy
    
    * fix paths
    
    * add source bin/df /test
    
    * add source bin/df /test2
    
    * something w paths /test
    
    * something w paths /test
    
    * add source-type /test
    
    * show paths /test
    
    * copy plugin /test
    
    * plugin -> nil
    
    * install rhash
    
    * no questions while installing rhash
    
    * publish snap only for release
    TriplEight authored Feb 12, 2019
    Configuration menu
    Copy the full SHA
    a4dc855 View commit details
    Browse the repository at this point in the history
  3. fix(docker): fix not receives SIGINT (#10059)

    * fix(docker): fix not receives SIGINT
    
    * fix: update with reviews
    
    * update with review
    
    * update
    
    * update
    Shude Li authored and 5chdn committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    55454b2 View commit details
    Browse the repository at this point in the history
  4. Don't add discovery initiators to the node table (#10305)

    * Don't add discovery initiators to the node table
    
    * Use enums for tracking state of the nodes in discovery
    
    * Dont try to ping ourselves
    
    * Fix minor nits
    
    * Update timeouts when observing an outdated node
    
    * Extracted update_bucket_record from update_node
    
    * Fixed typo
    
    * Fix two final nits from @todr
    kirushik authored and 5chdn committed Feb 12, 2019
    Configuration menu
    Copy the full SHA
    5be0163 View commit details
    Browse the repository at this point in the history
  5. change docker image based on debian instead of ubuntu due to the chan…

    …… (#10336)
    
    * change docker image based on debian instead of ubuntu due to the changes of the build container
    gabreal authored Feb 12, 2019
    Configuration menu
    Copy the full SHA
    a3883ca View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ea589a1 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2019

  1. Bundle protocol and packet_id together in chain sync (#10315)

    Define a new `enum` where devp2p subprotocol packet ids (currently eth and par) are defined. Additionally provide functionality to query id value and protocol of a given id object.
    elferdo authored Feb 13, 2019
    Configuration menu
    Copy the full SHA
    3adb640 View commit details
    Browse the repository at this point in the history
  2. snap: prefix version and populate candidate channel (#10343)

    * snap: populate candidate releases with beta snaps to avoid stale channel
    
    * snap: prefix version with v*
    5chdn authored Feb 13, 2019
    Configuration menu
    Copy the full SHA
    5123430 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2019

  1. Fixed misstype (#10351)

    * Fixed misstype
    
    BadTransactonType => BadTransactionType
    
    * fixed other insances of transacton
    danacr authored and HCastano committed Feb 14, 2019
    Configuration menu
    Copy the full SHA
    d6c80c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bff0bed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9cce6a4 View commit details
    Browse the repository at this point in the history
  4. snap: release untagged versions from branches to the candidate snap c…

    …hannel (#10357)
    5chdn authored and TriplEight committed Feb 14, 2019
    Configuration menu
    Copy the full SHA
    fa570f2 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2019

  1. Add fields to memzero's Cargo.toml (#10362)

    * Add fields to Cargo.toml before publishing to crates.io
    
    * Change license from MIT to GPL-3.0
    
    * Add docs page
    HCastano authored Feb 15, 2019
    Configuration menu
    Copy the full SHA
    af7dc36 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2019

  1. SecretStore: use in-memory transport in cluster tests (#9850)

    * fixing SS tests
    
    * removed some redundant clones
    
    * fixed grumbles
    
    * replaced hash.clone() with *hash + fixed comment
    
    * lost files
    svyatonik authored and 5chdn committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    ef0eda0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aea289e View commit details
    Browse the repository at this point in the history
  3. Add message to IO errors (#10324)

    Pzixel authored and ordian committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    ca67dc2 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2019

  1. snap: add the removable-media plug (#10377)

    This interface allows the snap to access the directories in /media. This is needed when the storage is in a separate disk, not part of home.
    Leo Arias authored and 5chdn committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    b4520c5 View commit details
    Browse the repository at this point in the history
  2. ethash: implement Progpow (#9762)

    * ethash: initial implementation of progpow
    
    * progpow: use wrapping arithmetic
    
    * progpow: cleanup comments
    
    * progpow: fix keccak_f800
    
    * progpow: reorder definitions
    
    * progpow: general fixing
    
    * progpow: add basic tests from geth
    
    * progpow: generate c_dag and add test
    
    * progpow: fix progpow_init and progpow_loop
    
    * progpow: fix and add new test
    
    * progpow: tabify
    
    * progpow: add shared testvectors from geth and aleth
    
    * progpow: add benchmarks
    
    * progpow: don't read bytes from dag
    
    * ethash: use criterion for progpow benchmarks
    
    * progpow: dont borrow hash on fnv1a_hash
    
    * progpow: don't borrow operand on progpow merge
    
    * progpow: hardcode dag lookup function
    
    we only support light verification anyway
    
    * progpow: read double words directly from the dag
    
    * progpow: inline some small functions
    
    * progpow: remove some bounds checking from the main loop
    
    * progpow: remove unreachable match cases
    
    * progpow: remove bounds check in keccak_f800_round
    
    * progpow: fix ptr::swap
    
    * progpow: force loop unroll in keccak_f800_round
    
    * progpow: remove unnecessary branching in progpow_loop
    
    * progpow: force loop unroll in fill_mix
    
    * progpow: silence unused warning
    
    * progpow: dont run last keccak_f800_round out of the loop
    
    rustc generates the same assembly, it unrolls the loop
    
    * progpow: fix output of keccak_f800_short
    
    * ethcore: support progpow in ethash engine
    
    * ethash: fix typo
    
    * ethcore, ethash: fix tests
    
    * json: fix ethash spec tests
    
    * ethash: update quick_get_difficulty for progpow
    
    * ethash: drop light cache on progpow transition block
    
    * ethash: fix quick_get_difficulty tests
    
    * progpow: update to spec v0.9.0
    
    * progpow: update to spec v0.9.1
    
    * progpow: update to spec v0.9.2
    
    * ethash: rename progpow benchmarks
    
    * fix Cargo.lock bad merge
    
    * ethash: only export modules for benchmarks
    
    * ethash: progpow: remove unsafe unchecked indexing
    
    * ethash: create enum for pow algorithm
    
    * ethash: box the progpow cdag
    
    * ethash: skip slow progpow test vectors on ci
    
    * ethash: don't skip progpow test vectors
    
    they don't take too long when running in release mode which is the case
    for CI.
    
    * ethash: progpow: update copyright date
    
    Co-Authored-By: andresilva <andre.beat@gmail.com>
    
    * ethcore: remove verification of ci-skip-tests on non-test builds
    andresilva authored and 5chdn committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    b457f46 View commit details
    Browse the repository at this point in the history
  3. exchanged old(azure) bootnodes with new(ovh) ones (#10309)

    * exchanged old(azure) bootnodes with new(ovh) ones
    
    * Fix indent
    fevo1971 authored and 5chdn committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    b803f57 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b58a3ed View commit details
    Browse the repository at this point in the history
  5. tx pool: always accept local transactions (#10375)

    * tx pool: always accept local transactions
    
    * tx pool: `choose` local txs with same sender and nonce
    ascjones authored Feb 20, 2019
    Configuration menu
    Copy the full SHA
    4e0ec4e View commit details
    Browse the repository at this point in the history
  6. Update to latest mem-db, hash-db and trie-db. (#10314)

    * Switch to 'trie' crates, there is an unpublished deps to staging
    parity-common triehash still.
    
    * Use crates.io dependency.
    
    * indentation
    
    * Update util/journaldb/src/traits.rs
    
    indentation
    
    Co-Authored-By: cheme <emericchevalier.pro@gmail.com>
    
    * Update ethcore/src/snapshot/tests/state.rs
    
    Co-Authored-By: cheme <emericchevalier.pro@gmail.com>
    cheme authored and ordian committed Feb 20, 2019
    Configuration menu
    Copy the full SHA
    6bb106a View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2019

  1. chore(bump ethereum-types) (#10396)

    Fixes a de-serialization bug in `ethereum-tyes`
    niklasad1 authored and ascjones committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    2cbffe3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f825048 View commit details
    Browse the repository at this point in the history
  3. no-git for publish jobs, empty artifacts dir (#10393)

    * no-git for publish jobs, empty artifacts dir
    
    * fix syntax
    
    * prettiness
    
    * fix prettiness
    
    * should get rid of git in publishing
    TriplEight authored and General-Beck committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    b21844b View commit details
    Browse the repository at this point in the history
  4. version: bump nightly to 2.5 (#10392)

    * version: bump nightly to 2.5
    
    * revert(rand 0.3.22)
    5chdn authored and soc1c committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    0815cc3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4311d43 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2019

  1. Configuration menu
    Copy the full SHA
    9ad71b7 View commit details
    Browse the repository at this point in the history
  2. fix #10390 (#10391)

    Antoine authored and soc1c committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    fcccbf3 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2019

  1. snap: reenable i386, arm64, armhf architecture publishing (#10386)

    * snap: reenable i386, arm64, armhf architecture publishing
    
    * gitlab: fix indent
    
    * gitlab: fix yml syntax
    
    * Linker for crosscomile
    
    * fix target to linker
    
    * new docker image
    
    * fix lint, add build to this PR
    
    * calc SHA3 using rhash
    
    * add new images for i386, armhf
    
    * show snap target & artifacts
    
    * set CARGO_TARGET for publish snap
    
    * move detect Version to publish snap
    
    * rm libc6 dep from snap-template up pub-snap script
    
    * clean up cargo config before add linker
    
    * move linker config to docker images
    5chdn authored and General-Beck committed Feb 25, 2019
    Configuration menu
    Copy the full SHA
    bceb883 View commit details
    Browse the repository at this point in the history
  2. fix(rpc-types): replace uint and hash with ethereum_types v0.4 (#10…

    …217)
    
    * fix(rpc-types): remove uint and hash wrappers
    
    * fix(tests)
    
    * fix(cleanup)
    
    * grumbles(rpc-api): revert `verify_signature`
    
    * revert change of `U64` -> `u64`
    
    * fix(cleanup after bad merge)
    
    * chore(bump ethereum-types)
    
    * fix(bad merge)
    
    * feat(tests ethereum-types): add tests
    
    * chore(update `ethereum-types` to 0.4.2)
    
    * feat(tests for h256)
    
    * chore(rpc): remove `ethbloom` import
    
    Use re-export from `ethereum-types` instead
    
    * fix(bad merge): remove `DefaultAccount` type
    
    * doc(add TODO with issue link)
    niklasad1 authored Feb 25, 2019
    Configuration menu
    Copy the full SHA
    c5c3fb6 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2019

  1. 10000 > 5000 (#10422)

    addresses #10418
    jam10o-new authored and ordian committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    afc1b72 View commit details
    Browse the repository at this point in the history
  2. Refactor ethcore::client::TransactResult to use it inside std::result…

    …::Result (#10366)
    
    * Refactor TransactResult
    
    * Adapt evmbin and tests
    elferdo authored and debris committed Feb 26, 2019
    Configuration menu
    Copy the full SHA
    1871275 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2ab3e4 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2019

  1. Configuration menu
    Copy the full SHA
    2fbb952 View commit details
    Browse the repository at this point in the history
  2. Remove duplicate test cases (#10385)

    Case create_account() is same as new_account()
    mohanson authored and debris committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    c7ded6a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fefec00 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94cb3b6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cfc8df1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3d0ce10 View commit details
    Browse the repository at this point in the history
  7. Update hardcoded headers for Foundation, Ropsten, Kovan and Classic (…

    …#10417)
    
    * update foundation to #7262209
    
    * update kovan to #10434561
    
    * update ropsten to #5027841
    
    * update classic to #7555073
    
    * Update Ropsten headers to #5101569
    Tbaut authored and soc1c committed Feb 27, 2019
    Configuration menu
    Copy the full SHA
    e71598d View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2019

  1. Configuration menu
    Copy the full SHA
    ed18c7b View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2019

  1. Configuration menu
    Copy the full SHA
    97cb010 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2019

  1. CI publish to aws (#10446)

    * move publish aws from gitlab.yml to gitlab scripts
    
    * gitlab.yml cleaning
    move publish AWS to gitlab scripts
    remove dependencies from android build
    General-Beck authored Mar 4, 2019
    Configuration menu
    Copy the full SHA
    1bd4564 View commit details
    Browse the repository at this point in the history
  2. Implement parity_versionInfo & parity_setChain on LC; fix parity_setC…

    …hain (#10312)
    
    * Light client: implement parity_versionInfo RPC
    
    * Light client: implement set_exit_handler & parity_setChain RPC
    
    * parity_setChain RPC: return an error if failed (instead of `true`)
    
    * Implement eth_subscribe('syncing') RPC for full node & light node
    
    * Fix indentation
    
    * Revert commit: Implement eth_subscribe('syncing')
    
    * Revert change to Cr callback function
    axelchalon authored and niklasad1 committed Mar 4, 2019
    Configuration menu
    Copy the full SHA
    7014642 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2019

  1. CI aws git checkout (#10451)

    * Updating the CI system with the publication of releases and binary files on github
    
    Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com>
    
    * move publish aws from gitlab.yml to gitlab scripts
    
    Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com>
    
    * gitlab.yml cleaning
    move publish AWS to gitlab scripts
    remove dependencies from android build
    
    Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com>
    
    * Revert "Updating the CI system with the publication of releases and binary files on github"
    
    This reverts commit da87e06f2e4751dbca08a898b52926aef5ad0aba.
    
    * remove no-git for aws
    
    * microfix
    
    * no need in no_git then
    General-Beck authored and TriplEight committed Mar 5, 2019
    Configuration menu
    Copy the full SHA
    3e1d731 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2019

  1. perf(ethcore): micro-opt (#10405)

    Mostly fixes that changes `eagerly eval` to `lazy eval`
    niklasad1 authored and debris committed Mar 6, 2019
    Configuration menu
    Copy the full SHA
    91933d8 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2019

  1. Revert "CI aws git checkout (#10451)" (#10456)

    * Revert "CI aws git checkout (#10451)"
    
    This reverts commit 3e1d731.
    
    * Update .gitlab-ci.yml
    
    revert aws script with small fixes
    
    * Delete publish-aws.sh
    General-Beck authored Mar 7, 2019
    Configuration menu
    Copy the full SHA
    742a600 View commit details
    Browse the repository at this point in the history
  2. docs: update changelogs for 2.2.{8,9,10,11}, 2.3.{1,2,3,4,5}, and 2.4…

    ….0 (#10389)
    
    * docs: move changelog 2-3 to docs/
    
    * docs: fix changelog 2-3 path
    
    * docs: add changelogs for 2.2.{8,9,10,11}
    
    * docs: add changelogs for 2.3.{1,2,3,4}
    
    * Update CHANGELOG.md
    
    * Update CHANGELOG-2.3.md
    
    * Update CHANGELOG.md
    
    * Update CHANGELOG.md
    5chdn authored and soc1c committed Mar 7, 2019
    Configuration menu
    Copy the full SHA
    ab27848 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2019

  1. Configuration menu
    Copy the full SHA
    23d977e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4320c9b View commit details
    Browse the repository at this point in the history
  3. Tests parallelized (#10452)

    * tests splitted, phase 1
    
    * typo
    
    * fix wrong launch commands
    
    * typos
    
    * rearrangements
    
    * use `nproc` function for threads
    
    * use nproc for threads
    
    * let theads be auto, build-andriod no more in regular run
    
    * split val chain and cargo check
    
    * renamed some files
    
    * wrong phase
    
    * check rust files before test jobs
    
    * lint error
    
    * rust files modivied var
    
    * test except changes
    
    * add rust_changes except
    
    * lint error
    
    * fixes
    
    * .gitlab-ci.yml can't be excluded
    
    * pipeline shouldn't start
    
    * pipeline must go
    
    * pipeline must go 2
    
    * pipeline must go 3
    
    * pipeline must go 4
    
    * pipeline must go 5
    
    * pipeline must go 6
    
    * pipeline must go 7
    
    * pipeline must not go 1
    
    * pipeline must go 8
    
    * avoid skippng tests yet, reintroducing them after the caching
    
    * test theory
    
    * parallelized cargo check with combusting helicopters
    
    * less uploads
    
    * alias for cargo checks
    
    * nice template
    TriplEight authored Mar 11, 2019
    Configuration menu
    Copy the full SHA
    82a148a View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2019

  1. Configuration menu
    Copy the full SHA
    595dac6 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2019

  1. simplify parity machine (#10469)

    * simplify ethcore machine by removing redundant traits
    
    * further ethereum machine simplifications
    
    * removed obsolete todo
    debris authored Mar 13, 2019
    Configuration menu
    Copy the full SHA
    a16bad4 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2019

  1. further simplify machine (#10472)

    * removed AuxiliaryRequest from Machin trait
    
    * removed AncestryAction from Machine trait
    
    * removed AuxiliaryData from Machine trait
    
    * removed LocalizedMachine trait
    debris authored and sorpaas committed Mar 14, 2019
    Configuration menu
    Copy the full SHA
    c9db8ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f875175 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d83143d View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2019

  1. simplify block module and usage (#10479)

    * removed trait IsBlock and simplify block usage
    
    * removed redundant ClosedBlock::hash function
    debris authored and ascjones committed Mar 15, 2019
    Configuration menu
    Copy the full SHA
    a574df3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb46165 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2019

  1. Сaching through docker volume (#10477)

    * _old codebase_ before docker update
    
    * before docker update, testing runnr
    
    * docker update, testing the caching
    
    * distributed job cargo homes
    
    * distributed job cargo homes 2
    
    * distributed job cargo homes 3
    
    * dockerfile with gitlab checkout, audit uses template
    
    * dockerfile gets repo in volume
    
    * change builds_dir
    
    * trying docker cache for repo
    
    * repo cached automatically
    
    * after script is not concatenated
    
    * check sccache non-cacheable reasons nature
    
    * watch cache
    
    * log sccache
    
    * log sccache 2
    
    * debug log sccache
    
    * fix debug log sccache
    
    * fix debug log sccache 2
    
    * debug log cache 3
    
    * debug log cache 3
    
    * trace log all sccache
    
    * test wo cargo cache
    
    * test w removed cargo cache
    
    * report non-cacheable reasons, cargo cache is back and empty
    
    * report non-cacheable reasons, cargo cache is back and empty 2
    
    * report non-cacheable reasons, cargo cache is back and empty 3
    
    * wrap into after_script
    
    * restore CI tags
    
    `qa` -> `linux-docker`
    
    * return to main runners, this will fail until config on runners And Dockerfile won't be updated
    
    * typo fix CI lint
    
    * return to docker tag
    TriplEight authored and General-Beck committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    a8ee3c9 View commit details
    Browse the repository at this point in the history
  2. fix win&mac build (#10486)

    add CARGO_HOME:                      "${CI_PROJECT_DIR}/.cargo"
    General-Beck authored and TriplEight committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    effead9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    78a5346 View commit details
    Browse the repository at this point in the history
  4. fix(extract timestamp_checked_add as lib) (#10383)

    * fix(extract `timestamp_checked_add` as lib)
    
    * fix(whisper types): remove unused `EmptyTopics`
    
    * fix(time-lib): feature-flag to use time-lib or std
    
    This commit adds conditional compilation checks that falls back to `our time-lib` when
    `time_checked_add` is not available in the standard library
    
    Note, `time_checked_add` covers both `checked_add` and `checked_sub`
    
    * fix(grumble): use cfg_attr to define rustc feature
    niklasad1 authored and soc1c committed Mar 19, 2019
    Configuration menu
    Copy the full SHA
    037fd1b View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2019

  1. Configuration menu
    Copy the full SHA
    9519493 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2019

  1. whisper/cli: add p2p port and ip parameters (#10057)

    * whisper/cli: add p2p port and ip parameters
    
    This is so that those params don't change randomly and are in sync with the URL that
    is displayed.
    
    * feedback: Result instead of panic
    
    Co-Authored-By: gballet <gballet@gmail.com>
    
    * feedback: Map error in port conversion
    
    Co-Authored-By: gballet <gballet@gmail.com>
    
    * whisper/cli: User can specify enode private key
    
    So that the enode doesn't change at every run.
    
    * whipser/cli: finish integrating review feedback.
    
    * Accomodate error API change
    
    * Update rustc-hex version in whisper/cli/Cargo.toml
    
    Co-Authored-By: gballet <gballet@gmail.com>
    
    * Update README with new whisper cli options
    
    * Fix typo in error message
    
    Co-Authored-By: gballet <gballet@gmail.com>
    
    * Fix Cargo.lock and build issue after lib version upgrade
    
    * Fix another typo
    
    Co-Authored-By: gballet <gballet@gmail.com>
    gballet authored and ordian committed Mar 21, 2019
    Configuration menu
    Copy the full SHA
    b700ff3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    375a8da View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2019

  1. Configuration menu
    Copy the full SHA
    f2c34f7 View commit details
    Browse the repository at this point in the history
  2. fix(rpc): fix a bunch of clippy lints (#10493)

    * fix(rpc): fix a bunch of clippy lints
    
    * fix(rpc clippy): remove unused ignored lints
    
    * fix(clippy): fix all redundant_field_names
    
    This commit fixes all uses of `redundant_field_names` and removes the ignored lint `redundant_field_names`
    
    * fix(brain unwrap): replace with expect
    niklasad1 authored and HCastano committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    17042e9 View commit details
    Browse the repository at this point in the history
  3. docs: add changelogs for 2.3.{6,7,8} and 2.4.{1,2,3} (#10494)

    * docs: add changelogs for 2.3.{6,7} and 2.4.{1,2}
    
    * docs: add changelogs for 2.4.3 beta and 2.3.8 stable
    
    * Update docs/CHANGELOG-2.3.md
    
    Co-Authored-By: soc1c <47772477+soc1c@users.noreply.github.com>
    
    * Update docs/CHANGELOG-2.3.md
    
    Co-Authored-By: soc1c <47772477+soc1c@users.noreply.github.com>
    
    * docs: remove empty lines
    soc1c authored and niklasad1 committed Mar 22, 2019
    Configuration menu
    Copy the full SHA
    023e511 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2019

  1. Add a more realistic Batch test (#10511)

    * Remove unrealistic tests
    
    * Add test that more closely resembles real usage
    HCastano authored Mar 25, 2019
    Configuration menu
    Copy the full SHA
    6cf3ba7 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2019

  1. Configuration menu
    Copy the full SHA
    9cb8606 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2019

  1. ethcore: add clique engine (#9981)

    * fix broken sync
    
    * correct seal fields
    
    * ethcore: fix comment
    
    * parity: remove duplicate params
    
    * clique: fix whitespaces
    
    * ethcore: fix goerli chain spec
    
    * refactor signer_snapshot into pending/finalized state
    
    * move close_block_extra_data after seal is applied
    
    * refactor most of the logic into the signer_snapshot
    
    * clique: refactor locking logic out of the consensus engine interface
    
    * Fix jsonspec and add an unittest
    
    * Replace space with tabs
    
    * Unbroke sync
    
    * Fix broken sync
    
    * 1/2 state tracking without votes
    
    * 2/2 implement vote tracking
    
    * ci: use travis for goerli
    
    * ci: setup a clique network
    
    * ci: sync a görli node
    
    * add clique deploy script
    
    * ci: fix paths in clique deploy script
    
    * ci: use docker compose
    
    * ci: fix travis job names
    
    * ci: fix build deps
    
    * ci: massively reduce tests
    
    * Revert "ci: massively reduce tests"
    
    This reverts commit 6369f0b069ed2607a7e9f2e1d85489bacdc43384.
    
    * ci: run cargo test directly
    
    * ci: separate build and test stages
    
    * ci: cache rust installation
    
    * ci: simplify ci stages
    
    * ci: make clique deploy script executable
    
    * ci: shutdown goerli sync after 20min
    
    * ci: remove slow sync stage
    
    * ci: use timeout to finish jobs
    
    * ci: fix build path
    
    * ci: use absolute paths to end this confusion
    
    * ci: add geth and parity to path
    
    * ci: be more verbose
    
    * ci: allow for more relaxed caching timeout
    
    * ci: update repositories for custom ppa
    
    * ci: fix typo in file name
    
    * ci: fix docker compose file
    
    * ci: add ethkey to docker
    
    * ci: make sure deploy script is up to date with upstream
    
    * ci: stop docker container after certain time
    
    * ci: force superuser to update permissions on docker files
    
    * ci: reduce run time of script to ~30 min
    
    * ci: remove duplicate caching in travis
    
    * remove trace statements
    
    * clique: add more validation involving the recent signer list
    
    * ethcore: enable constantinople for rinkeby
    
    * ethcore: fix whitespaces in rinkeby spec
    
    * ethcore: reformat goerli.json
    
    * Revert "ci: remove duplicate caching in travis"
    
    This reverts commit a562838d3d194d37f9871dcbe00b783637978f89.
    
    * tmp commit
    
    * another tmp commit
    
    * it builds!
    
    * add sealing capabilities
    
    * add seal_header hook to allow separation of block seal/importing code paths
    
    * clique: remove populate_from_parent.
    
    * add panic
    
    * make turn delay random
    
    * initialize OpenBlock properly in 'enact'
    
    * misc: remove duplicate lines
    
    * misc: fix license headers
    
    * misc: convert spaces to tabs
    
    * misc: fix tabs
    
    * Update Cargo.toml
    
    * Update Cargo.toml
    
    * Update Cargo.toml
    
    * clique: ensure validator restores state before trying to seal
    
    * clique: make 'state' return an Error.  Make some error messages more clear
    
    * Fix compile error after rebase & toolchain upgrade
    
    * fix a bunch of import warnings
    
    * Refactor code
    
    * Fix permissions
    
    * Refactoring syncing
    
    * Implement full validator checks
    
    * Refactor util functions to seperate file
    
    * mining 1
    
    * ethcore: add chainspec for kotti
    
    * ethcore: rename pre-goerli configs
    
    * ethcore: load kotti chain spec
    
    * cli: add kotti to params
    
    * Implement working local sealing
    
    * making sealing & syncing work together
    
    * Relax timestamp checking
    
    * ethcore: prepare for the real goerli to launch
    
    * Implement NOTURN wiggle properly & cleanupnup warnings
    
    * Implement vote casting
    
    * Update docs & skip signing if no signer
    
    * Optimize step-service interval
    
    * Record state on local sealed block
    
    * Fix script filemode
    
    * Cleaning up codebase
    
    * restore enact trace logging
    
    * Delete clique.sh and move sync.sh
    
    * remove travis.yml
    
    * Remove dead code
    
    * Cleanup compile warning
    
    * address review comments
    
    * adding more comments and removing unwrap()
    
    * ci: remove sync script
    
    * Address review comments
    
    * fix compile error
    
    * adding better debugging for timing
    
    * Implement an dedicated thread for sealing timing
    
    * fix(add helper for timestamp overflows) (#10330)
    
    * fix(add helper timestamp overflows)
    
    * fix(simplify code)
    
    * fix(make helper private)
    
    * snap: official image / test (#10168)
    
    * official image / test
    
    * fix / test
    
    * bit more necromancy
    
    * fix paths
    
    * add source bin/df /test
    
    * add source bin/df /test2
    
    * something w paths /test
    
    * something w paths /test
    
    * add source-type /test
    
    * show paths /test
    
    * copy plugin /test
    
    * plugin -> nil
    
    * install rhash
    
    * no questions while installing rhash
    
    * publish snap only for release
    
    * fix(docker): fix not receives SIGINT (#10059)
    
    * fix(docker): fix not receives SIGINT
    
    * fix: update with reviews
    
    * update with review
    
    * update
    
    * update
    
    * Don't add discovery initiators to the node table (#10305)
    
    * Don't add discovery initiators to the node table
    
    * Use enums for tracking state of the nodes in discovery
    
    * Dont try to ping ourselves
    
    * Fix minor nits
    
    * Update timeouts when observing an outdated node
    
    * Extracted update_bucket_record from update_node
    
    * Fixed typo
    
    * Fix two final nits from @todr
    
    * change docker image based on debian instead of ubuntu due to the chan… (#10336)
    
    * change docker image based on debian instead of ubuntu due to the changes of the build container
    
    * role back docker build image and docker deploy image to ubuntu:xenial based (#10338)
    
    * Bundle protocol and packet_id together in chain sync (#10315)
    
    Define a new `enum` where devp2p subprotocol packet ids (currently eth and par) are defined. Additionally provide functionality to query id value and protocol of a given id object.
    
    * snap: prefix version and populate candidate channel (#10343)
    
    * snap: populate candidate releases with beta snaps to avoid stale channel
    
    * snap: prefix version with v*
    
    * addressing review comments
    
    * engine: fix copyright header
    
    * scripts: restore permissions on sign command
    
    * ethcore: enforce tabs
    
    * ethcore: enforce tabs
    
    * ethcore: enforce tabs
    
    * addressing comments
    
    * addressing comments
    
    * addressing more comments
    
    * addressing more comments
    
    * addressing more comments
    
    * addressing more comments
    
    * addressing more comments
    
    * json-spec: fix clique epoch to non-zero u64
    
    * ci: enable travis for parity goerli
    
    * ci: don't separate build and test step
    
    * ci: don't run c++ tests on travis
    
    * ci: simplify cargo test to squeeze into travis timeout
    
    * ci: don't run tests on travis at all
    
    * style(fixes)
    
    * fix(add tests)
    
    * fix(recent_signer bug)
    
    * fix(complete all tests)
    
    * fix(nits)
    
    * fix(simplify asserts)
    
    * fix(cliqueState): simplify code
    
    * fix(nits)
    
    * docs(comments what's need to fixed)
    
    * fix(revert unintended changes)
    
    * fix(tests)
    
    * fix(logs): voting logs
    
    * fix(readability + more logs)
    
    * fix(sync)
    
    * docs(add missing licens header)
    
    * fix(log): info! -> trace!
    
    * docs(fix nits) + fix(remove assert)
    
    * perf(use counter instead of vec)
    
    * fix(remove needless block in match)
    
    * fix(faulty comment)
    
    * grumbles(docs for tests)
    
    * fix(nits)
    
    * fix(revert_vote): only remove vote when votes == 0
    
    * fix(vote counter): checked arithmetics
    
    * fix(simplify tests)
    
    * fix(nits)
    
    * fix(clique): err types
    
    * fix(clique utils): make use of errors
    
    * fix(cleanup nits)
    
    * fix(clique sealing): don't read state no signer
    
    * fix(replace Vec<Signers> with BTreeSet<Signers>)
    
    * fix(tests): BTreeSet and more generic helpers
    
    * fix(nits)
    
    * fix(ethcore_block_seal): remove needless `Box`
    
    * fix(faulty log): info -> trace
    
    * fix(checked SystemTime): prevent SystemTime panics
    
    * style(chain cfg): space after `:`
    
    * style(fn enact): fix whitespace
    
    * docs(clique): StepService
    
    * docs(nit): fix faulty comment
    
    * docs(fix typo)
    
    * style(fix bad indentation)
    
    * fix(bad regex match)
    
    * grumble(on_seal_block): make `&mut` to avoid clone
    
    * docs(on_seal_block): fix faulty documentation
    
    * Delete .travis.yml
    
    * docs: remove eth hf references in spec
    
    * Update client.rs
    
    * fix(nits)
    
    * fix(clique step): `RwLock` -> `AtomicBool`
    
    * fix(clique): use `Duration::as_millis`
    
    * Clean up some Clique documentation
    
    Co-authored-by: soc1c <soc1c@users.noreply.github.com>
    Co-authored-by: HCastano <HCastano@users.noreply.github.com>
    Co-authored-by: niklasad1 <niklasad1@users.noreply.github.com>
    Co-authored-by: jwasinger <jwasinger@users.noreply.github.com>
    Co-authored-by: ChainSafe <ChainSafe@users.noreply.github.com>
    Co-authored-by: thefallentree <thefallentree@users.noreply.github.com>
    Co-authored-by: 5chdn <5chdn@users.noreply.github.com>
    7 people committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    aa8487c View commit details
    Browse the repository at this point in the history
  2. Add trace information to eth_estimateGas (#10519)

    * Add trace information to eth_estimateGas
    
    * replace unwrap better version
    
    * change vm::Error formatter to more user-friendly
    
    * remove extra error format
    
    * use map_or instead sequence of map/unwrap_or
    fanatid authored and soc1c committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    3b23817 View commit details
    Browse the repository at this point in the history
  3. private-tx: replace error_chain (#10510)

    * Update to vanilla tx pool error
    
    * private-tx: remove error-chain, implement Error, derive Display
    
    * private-tx: replace ErrorKind and bail!
    
    * private-tx: add missing From impls and other compiler errors
    
    * private-tx: use original tx-pool error
    
    * Don't be silly cargo
    ascjones authored and soc1c committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    7d26a82 View commit details
    Browse the repository at this point in the history
  4. fix(light): make OnDemand generic instead of using the concrete typ…

    …e (#10514)
    
    * ethcore: add clique engine (#9981)
    
    * fix broken sync
    
    * correct seal fields
    
    * ethcore: fix comment
    
    * parity: remove duplicate params
    
    * clique: fix whitespaces
    
    * ethcore: fix goerli chain spec
    
    * refactor signer_snapshot into pending/finalized state
    
    * move close_block_extra_data after seal is applied
    
    * refactor most of the logic into the signer_snapshot
    
    * clique: refactor locking logic out of the consensus engine interface
    
    * Fix jsonspec and add an unittest
    
    * Replace space with tabs
    
    * Unbroke sync
    
    * Fix broken sync
    
    * 1/2 state tracking without votes
    
    * 2/2 implement vote tracking
    
    * ci: use travis for goerli
    
    * ci: setup a clique network
    
    * ci: sync a görli node
    
    * add clique deploy script
    
    * ci: fix paths in clique deploy script
    
    * ci: use docker compose
    
    * ci: fix travis job names
    
    * ci: fix build deps
    
    * ci: massively reduce tests
    
    * Revert "ci: massively reduce tests"
    
    This reverts commit 6369f0b069ed2607a7e9f2e1d85489bacdc43384.
    
    * ci: run cargo test directly
    
    * ci: separate build and test stages
    
    * ci: cache rust installation
    
    * ci: simplify ci stages
    
    * ci: make clique deploy script executable
    
    * ci: shutdown goerli sync after 20min
    
    * ci: remove slow sync stage
    
    * ci: use timeout to finish jobs
    
    * ci: fix build path
    
    * ci: use absolute paths to end this confusion
    
    * ci: add geth and parity to path
    
    * ci: be more verbose
    
    * ci: allow for more relaxed caching timeout
    
    * ci: update repositories for custom ppa
    
    * ci: fix typo in file name
    
    * ci: fix docker compose file
    
    * ci: add ethkey to docker
    
    * ci: make sure deploy script is up to date with upstream
    
    * ci: stop docker container after certain time
    
    * ci: force superuser to update permissions on docker files
    
    * ci: reduce run time of script to ~30 min
    
    * ci: remove duplicate caching in travis
    
    * remove trace statements
    
    * clique: add more validation involving the recent signer list
    
    * ethcore: enable constantinople for rinkeby
    
    * ethcore: fix whitespaces in rinkeby spec
    
    * ethcore: reformat goerli.json
    
    * Revert "ci: remove duplicate caching in travis"
    
    This reverts commit a562838d3d194d37f9871dcbe00b783637978f89.
    
    * tmp commit
    
    * another tmp commit
    
    * it builds!
    
    * add sealing capabilities
    
    * add seal_header hook to allow separation of block seal/importing code paths
    
    * clique: remove populate_from_parent.
    
    * add panic
    
    * make turn delay random
    
    * initialize OpenBlock properly in 'enact'
    
    * misc: remove duplicate lines
    
    * misc: fix license headers
    
    * misc: convert spaces to tabs
    
    * misc: fix tabs
    
    * Update Cargo.toml
    
    * Update Cargo.toml
    
    * Update Cargo.toml
    
    * clique: ensure validator restores state before trying to seal
    
    * clique: make 'state' return an Error.  Make some error messages more clear
    
    * Fix compile error after rebase & toolchain upgrade
    
    * fix a bunch of import warnings
    
    * Refactor code
    
    * Fix permissions
    
    * Refactoring syncing
    
    * Implement full validator checks
    
    * Refactor util functions to seperate file
    
    * mining 1
    
    * ethcore: add chainspec for kotti
    
    * ethcore: rename pre-goerli configs
    
    * ethcore: load kotti chain spec
    
    * cli: add kotti to params
    
    * Implement working local sealing
    
    * making sealing & syncing work together
    
    * Relax timestamp checking
    
    * ethcore: prepare for the real goerli to launch
    
    * Implement NOTURN wiggle properly & cleanupnup warnings
    
    * Implement vote casting
    
    * Update docs & skip signing if no signer
    
    * Optimize step-service interval
    
    * Record state on local sealed block
    
    * Fix script filemode
    
    * Cleaning up codebase
    
    * restore enact trace logging
    
    * Delete clique.sh and move sync.sh
    
    * remove travis.yml
    
    * Remove dead code
    
    * Cleanup compile warning
    
    * address review comments
    
    * adding more comments and removing unwrap()
    
    * ci: remove sync script
    
    * Address review comments
    
    * fix compile error
    
    * adding better debugging for timing
    
    * Implement an dedicated thread for sealing timing
    
    * fix(add helper for timestamp overflows) (#10330)
    
    * fix(add helper timestamp overflows)
    
    * fix(simplify code)
    
    * fix(make helper private)
    
    * snap: official image / test (#10168)
    
    * official image / test
    
    * fix / test
    
    * bit more necromancy
    
    * fix paths
    
    * add source bin/df /test
    
    * add source bin/df /test2
    
    * something w paths /test
    
    * something w paths /test
    
    * add source-type /test
    
    * show paths /test
    
    * copy plugin /test
    
    * plugin -> nil
    
    * install rhash
    
    * no questions while installing rhash
    
    * publish snap only for release
    
    * fix(docker): fix not receives SIGINT (#10059)
    
    * fix(docker): fix not receives SIGINT
    
    * fix: update with reviews
    
    * update with review
    
    * update
    
    * update
    
    * Don't add discovery initiators to the node table (#10305)
    
    * Don't add discovery initiators to the node table
    
    * Use enums for tracking state of the nodes in discovery
    
    * Dont try to ping ourselves
    
    * Fix minor nits
    
    * Update timeouts when observing an outdated node
    
    * Extracted update_bucket_record from update_node
    
    * Fixed typo
    
    * Fix two final nits from @todr
    
    * change docker image based on debian instead of ubuntu due to the chan… (#10336)
    
    * change docker image based on debian instead of ubuntu due to the changes of the build container
    
    * role back docker build image and docker deploy image to ubuntu:xenial based (#10338)
    
    * Bundle protocol and packet_id together in chain sync (#10315)
    
    Define a new `enum` where devp2p subprotocol packet ids (currently eth and par) are defined. Additionally provide functionality to query id value and protocol of a given id object.
    
    * snap: prefix version and populate candidate channel (#10343)
    
    * snap: populate candidate releases with beta snaps to avoid stale channel
    
    * snap: prefix version with v*
    
    * addressing review comments
    
    * engine: fix copyright header
    
    * scripts: restore permissions on sign command
    
    * ethcore: enforce tabs
    
    * ethcore: enforce tabs
    
    * ethcore: enforce tabs
    
    * addressing comments
    
    * addressing comments
    
    * addressing more comments
    
    * addressing more comments
    
    * addressing more comments
    
    * addressing more comments
    
    * addressing more comments
    
    * json-spec: fix clique epoch to non-zero u64
    
    * ci: enable travis for parity goerli
    
    * ci: don't separate build and test step
    
    * ci: don't run c++ tests on travis
    
    * ci: simplify cargo test to squeeze into travis timeout
    
    * ci: don't run tests on travis at all
    
    * style(fixes)
    
    * fix(add tests)
    
    * fix(recent_signer bug)
    
    * fix(complete all tests)
    
    * fix(nits)
    
    * fix(simplify asserts)
    
    * fix(cliqueState): simplify code
    
    * fix(nits)
    
    * docs(comments what's need to fixed)
    
    * fix(revert unintended changes)
    
    * fix(tests)
    
    * fix(logs): voting logs
    
    * fix(readability + more logs)
    
    * fix(sync)
    
    * docs(add missing licens header)
    
    * fix(log): info! -> trace!
    
    * docs(fix nits) + fix(remove assert)
    
    * perf(use counter instead of vec)
    
    * fix(remove needless block in match)
    
    * fix(faulty comment)
    
    * grumbles(docs for tests)
    
    * fix(nits)
    
    * fix(revert_vote): only remove vote when votes == 0
    
    * fix(vote counter): checked arithmetics
    
    * fix(simplify tests)
    
    * fix(nits)
    
    * fix(clique): err types
    
    * fix(clique utils): make use of errors
    
    * fix(cleanup nits)
    
    * fix(clique sealing): don't read state no signer
    
    * fix(replace Vec<Signers> with BTreeSet<Signers>)
    
    * fix(tests): BTreeSet and more generic helpers
    
    * fix(nits)
    
    * fix(ethcore_block_seal): remove needless `Box`
    
    * fix(faulty log): info -> trace
    
    * fix(checked SystemTime): prevent SystemTime panics
    
    * style(chain cfg): space after `:`
    
    * style(fn enact): fix whitespace
    
    * docs(clique): StepService
    
    * docs(nit): fix faulty comment
    
    * docs(fix typo)
    
    * style(fix bad indentation)
    
    * fix(bad regex match)
    
    * grumble(on_seal_block): make `&mut` to avoid clone
    
    * docs(on_seal_block): fix faulty documentation
    
    * Delete .travis.yml
    
    * docs: remove eth hf references in spec
    
    * Update client.rs
    
    * fix(nits)
    
    * fix(clique step): `RwLock` -> `AtomicBool`
    
    * fix(clique): use `Duration::as_millis`
    
    * Clean up some Clique documentation
    
    * Add trace information to eth_estimateGas (#10519)
    
    * Add trace information to eth_estimateGas
    
    * replace unwrap better version
    
    * change vm::Error formatter to more user-friendly
    
    * remove extra error format
    
    * use map_or instead sequence of map/unwrap_or
    
    * fix(light/on_demand): extract as a trait
    
    * fix(grumble): OnDemand remove needless trait bound
    niklasad1 authored and soc1c committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    407de5e View commit details
    Browse the repository at this point in the history
  5. Initial support sccache for windows build (#10520)

    * Initial support sccache for win build
    
    * show sccache stats
    
    * cache paths for shared runners
    
    * sccache status is in the script.
    
    * removed windows test for now
    General-Beck authored and soc1c committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    e4c2fe9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0199acb View commit details
    Browse the repository at this point in the history
  7. Fix max_gas (#10537)

    Fix max_gas
    sorpaas authored and Demi-Marie committed Mar 27, 2019
    Configuration menu
    Copy the full SHA
    04c6867 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2019

  1. fix(bump dependencies) (#10540)

    * cargo update -p log:0.4.5
    
    * cargo update -p regex:1.0.5
    
    * cargo update -p parking_lot
    
    * cargo update -p serde_derive
    
    * cargo update -p serde_json
    
    * cargo update -p serde
    
    * cargo update -p lazy_static
    
    * cargo update -p num_cpus
    
    * cargo update -p toml
    niklasad1 authored and ascjones committed Mar 28, 2019
    Configuration menu
    Copy the full SHA
    ebf51c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e2e88a View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. updated lru-cache to 0.1.2 (#10542)

    debris authored and ascjones committed Mar 29, 2019
    Configuration menu
    Copy the full SHA
    89d6277 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2019

  1. Configuration menu
    Copy the full SHA
    8840a29 View commit details
    Browse the repository at this point in the history
  2. build android with cache, win fixes (#10546)

    * build android with cache!
    
    * windows fixes
    
    * windows fixes 2
    
    * windows fixes 3
    
    * windows fixes 4
    
    * windows should have sccache variables in env variables
    TriplEight authored and soc1c committed Mar 30, 2019
    Configuration menu
    Copy the full SHA
    440e52f View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2019

  1. Implement caching for service transactions checker (#10088)

    * Tx permission contract improvement
    
    * Take in account zero gas price certification when doing transact_contract
    
    * DRY in ServiceTransactionChecker
    
    * Fix typos and regroup mod
    
    * Introduce CertifiedAddressesCache
    
    * Introduce refresh_cache for CertifiedAddressesCache
    
    * Add CertifiedAddressesCache read and write on checking
    
    * Refresh CertifiedAddressesCache on new imported block
    
    * Separate ChainInfo trait and fix errors after merge
    
    * Do not fire an error when service txes contract does not exist
    
    * WIP: Shared certified addresses cache between miner and client + use HashMap instead of BTreeMap
    
    * Refactor refresh_cache for ServiceTransactionChecker
    
    * Refresh cache fixes
    
    * Add cache read in check_address + log when cache is used + improve code
    
    * Remove ChainInfo from ServiceTransaction dependencies
    
    * DRY ServiceTransactionChecker
    
    * Fix Client and Miner in tests
    
    * Fix node_filter test
    
    * Fix Client::new in add_peer_with_private_config
    
    * WIP: Separated ChainNotify from ethcore trait and implemented ChainNotify for ServiceTransactionChecker
    
    * Fix watcher test
    
    * Revert "Merge branch 'master' into master"
    
    This reverts commit 4e7371dc109d022efe3087defc33d827998ce648, reversing
    changes made to bffd73e5fd58a516bbf404281b51cf26422e181e.
    
    * Revert "Fix watcher test"
    
    This reverts commit bffd73e5fd58a516bbf404281b51cf26422e181e.
    
    * Revert "WIP: Separated ChainNotify from ethcore trait and implemented ChainNotify for ServiceTransactionChecker"
    
    This reverts commit 6e73d1e61fa15dc10ffd4fab63df29eabe9c3b3a.
    
    * Revert "Fix Client::new in add_peer_with_private_config"
    
    This reverts commit ec610a30bee95588d58b79edcc9e43c2ff90f1ad.
    
    * Revert "Fix node_filter test"
    
    This reverts commit 06a4b2de86317c902f579e912b40de0b0fbf6d78.
    
    * Revert "Fix Client and Miner in tests"
    
    This reverts commit 51bbad330ea6e7bdfc1516208cc8705d5d11516d.
    
    * Implement ServiceTransactionChecker in miner and delegate it to client + revert unnecessary changes
    
    * Merge master
    
    * Code improvements
    
    * Merge branch 'master' of https://github.com/paritytech/parity-ethereum
    
    # Conflicts:
    #	Cargo.lock
    #	ethcore/private-tx/src/lib.rs
    #	ethcore/src/miner/miner.rs
    #	ethcore/src/miner/pool_client.rs
    VladLupashevskyi authored and soc1c committed Mar 31, 2019
    Configuration menu
    Copy the full SHA
    7b2afdf View commit details
    Browse the repository at this point in the history
  2. fix(light eth_gasPrice): ask network if not in cache (#10535)

    * fix(light eth_gasPrice): ask N/W if not in cache
    
    * fix(bad rebase)
    niklasad1 authored and soc1c committed Mar 31, 2019
    Configuration menu
    Copy the full SHA
    95236d2 View commit details
    Browse the repository at this point in the history
  3. Update light client harcoded headers (#10547)

    * kovan #10643457
    
    * ropsten #5296129
    
    * foundation #7460865
    
    * classic #7747585
    
    * indentation
    
    * morden #3973121
    Tbaut authored and soc1c committed Mar 31, 2019
    Configuration menu
    Copy the full SHA
    ec56b1f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    89f828b View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2019

  1. tx-pool: check transaction readiness before replacing (#10526)

    * Update to vanilla tx pool error
    
    * Prevent a non ready tx replacing a ready tx
    
    * Make tests compile
    
    * Test ready tx not replaced by future tx
    
    * Transaction indirection
    
    * Use StateReadiness to calculate Ready in `should_replace`
    
    * Test existing txs from same sender are used to compute Readiness
    
    * private-tx: Wire up ShouldReplace
    
    * Revert "Use StateReadiness to calculate Ready in `should_replace`"
    
    This reverts commit af9e69c8
    
    * Make replace generic so it works with private-tx
    
    * Rename Replace and add missing docs
    
    * ShouldReplace no longer mutable
    
    * tx-pool: update to transaction-pool 2.0 from crates.io
    
    * tx-pool: generic error type alias
    
    * Exit early for first unmatching nonce
    
    * Fix private-tx test, use existing write lock
    
    * Use read lock for pool scoring
    ascjones authored and soc1c committed Apr 1, 2019
    Configuration menu
    Copy the full SHA
    d9673b0 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2019

  1. version: betalize 2.5

    soc1c committed Apr 2, 2019
    Configuration menu
    Copy the full SHA
    3c85f29 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2019

  1. beta backports (#10576)

    * Reject crazy timestamps instead of truncating.
    
    * fix(light cull): poll light cull instead of timer (#10559)
    
    * fix(light cull): poll light cull instead of timer
    
    * fix(grumbles): remove error + updated docs
    
    * fix(on-demand request): `expect()` reason
    
    * docs(remove misleading info)
    soc1c authored Apr 8, 2019
    Configuration menu
    Copy the full SHA
    b52ac20 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2019

  1. beta 2.5.1 (#10643)

    * version: bump beta to 2.5.1
    
    * fix(whisper expiry): current time + work + ttl (#10587)
    
    * update bootnodes (#10595)
    
    * config: update goerli bootnodes
    
    * config: update kotti bootnodes
    
    * adds rpc error message for --no-ancient-blocks (#10608)
    
    * adds error message for --no-ancient-blocks, closes #10261
    
    * Apply suggestions from code review
    
    Co-Authored-By: seunlanlege <seunlanlege@gmail.com>
    
    * Constantinople HF on POA Core (#10606)
    
    * Constantinople HF on POA Core
    
    Plan Constantinople/St.Petersfork HF on POA Core network at block 8582254.
    Original PR in POA repository: poanetwork/poa-chain-spec#110
    
    * Remove extra empty line
    
    * evm: add some mulmod benches (#10600)
    
    * evm: add blockhash_mulmod bench
    
    * evm: use num-bigint for mod ops
    
    * Clique: zero-fill extradata when the supplied value is less than 32 bytes in length (#10605)
    
    * Update kovan.json to switch validator set to POA Consensus Contracts (#10628)
    
    * Fix publish docs (#10635)
    
    * Fix publish docs
    
    * this never should be forced, either way compiling previous versions will produce outdated docs
    
    * fix array, var was moved to the group project global variables list
    
    * Fix rinkeby petersburg fork (#10632)
    soc1c authored May 10, 2019
    Configuration menu
    Copy the full SHA
    e0141f8 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2019

  1. Configuration menu
    Copy the full SHA
    c2487cf View commit details
    Browse the repository at this point in the history
  2. beta ci: backport missing diff from master (#10661)

    * ci: publish docs debug (#10638)
    
    * ci: backport missing diff from master
    soc1c authored May 14, 2019
    Configuration menu
    Copy the full SHA
    adabd81 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2019

  1. backports for beta 2.5.2 (#10737)

    * version: bump beta to 2.5.2
    
    * [CI] allow cargo audit to fail (#10676)
    
    * [CI] allow cargo audit to fail
    
    * [.gitlab-ci.yml] add a comment about cargo audit
    
    * [Cargo.lock] cargo update -p protobuf
    
    * Reset blockchain properly (#10669)
    
    * delete BlockDetails from COL_EXTRA
    
    * better proofs
    
    * added tests
    
    * PR suggestions
    
    * new image (#10673)
    
    * Update publishing (#10644)
    
    * docker images are now built on k8s: test run
    
    * copy check_sync.sh in build-linux job
    
    * copy scripts/docker/hub/* in build-linux job
    
    * removed cache var
    
    * cleanup, no more nightly dockers
    
    * cleanup in dockerfile
    
    * some new tags
    
    * removed sccsche debug log, cleanup
    
    * no_gits, new artifacts dir, changed scripts. Test run.
    
    * define version once
    
    * one source for TRACK
    
    * stop kovan onchain updates
    
    * moved changes for two images to a new branch
    
    * rename Dockerfile
    
    * no need in libudev-dev
    
    * enable lto for release builds (#10717)
    
    * Use RUSTFLAGS to set the optimization level (#10719)
    
    * Use RUSTFLAGS to set the optimization level
    
    Cargo has a [quirk]() in how configuration settings are propagated when `cargo test` runs: local code respect the settings in `[profile.test]` but all dependencies use the `[profile.dev]` settings. Here we force `opt-level=3` for all dependencies.
    
    * Remove unused profile settings
    
    * Maybe like this?
    
    * Turn off incremental compilation
    
    * Remove colors; try again with overflow-checks on
    
    * Use quiet CI machine
    
    * Turn overflow checking back on
    
    * Be explicit about what options we use
    
    * Remove "quiet machine" override
    
    * ethcore: enable ECIP-1054 for classic (#10731)
    
    * config: enable atlantis on ethereum classic
    
    * config: enable atlantis on morden classic
    
    * config: enable atlantis on morden classic
    
    * config: enable atlantis on kotti classic
    
    * ethcore: move kotti fork block to 0xAEF49
    
    * ethcore: move morden fork block to 0x4829BA
    
    * ethcore: move classic fork block to 0x81B320
    
    * remove trailing comma
    
    * remove trailing comma
    
    * fix chainspec
    
    * ethcore: move classic fork block to 0x7fffffffffffffff
    soc1c authored Jun 11, 2019
    Configuration menu
    Copy the full SHA
    ecbafb2 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2019

  1. Beta 2.5.3 (#10776)

    * ethcore/res: activate atlantis classic hf on block 8772000 (#10766)
    
    * fix docker tags for publishing (#10741)
    
    * fix: aura don't add `SystemTime::now()` (#10720)
    
    This commit does the following:
    - Prevent overflow in `verify_timestamp()` by not adding `now` to found faulty timestamp
    - Use explicit `CheckedSystemTime::checked_add` to prevent potential consensus issues because SystemTime is platform
    depedent
    - remove `#[cfg(not(time_checked_add))]` conditional compilation
    
    * Update version
    
    * Treat empty account the same as non-exist accounts in EIP-1052 (#10775)
    
    * DevP2p: Get node IP address and udp port from Socket, if not included in PING packet (#10705)
    
    * get node IP address and udp port from Socket, if not included in PING packet
    
    * prevent bootnodes from being added to host nodes
    
    * code corrections
    
    * code corrections
    
    * code corrections
    
    * code corrections
    
    * docs
    
    * code corrections
    
    * code corrections
    
    * Apply suggestions from code review
    
    Co-Authored-By: David <dvdplm@gmail.com>
    
    * Add a way to signal shutdown to snapshotting threads (#10744)
    
    * Add a way to signal shutdown to snapshotting threads
    
    * Pass Progress to fat_rlps() so we can abort from there too.
    
    * Checking for abort in a single spot
    
    * Remove nightly-only weak/strong counts
    
    * fix warning
    
    * Fix tests
    
    * Add dummy impl to abort snapshots
    
    * Add another dummy impl for TestSnapshotService
    
    * Remove debugging code
    
    * Return error instead of the odd Ok(())
    Switch to AtomicU64
    
    * revert .as_bytes() change
    
    * fix build
    
    * fix build maybe
    s3krit authored Jun 25, 2019
    Configuration menu
    Copy the full SHA
    3fd58bd View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2019

  1. Beta 2.5.4 (#10827)

    * cargo update -p smallvec (#10822)
    
    Fixes servo/rust-smallvec#148
    
    * Update version to v2.5.3
    
    Signed-off-by: Martin Pugh <pugh@s3kr.it>
    s3krit authored Jul 1, 2019
    Configuration menu
    Copy the full SHA
    d60e638 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2019

  1. Configuration menu
    Copy the full SHA
    3ebc769 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2019

  1. V2.5.6 stable (#10961)

      -  Fix cargo audit (#10921)
      - Add support for Energy Web Foundation's new chains (#10957)
      - Kaspersky AV whitelisting (#10919)
      - Avast whitelist script (#10900)
      - Docker images renaming (#10863)
      - Remove excessive warning (#10831)
      - Allow --nat extip:your.host.here.org (#10830)
      - When updating the client or when called from RPC, sleep should mean sleep (#10814)
      - added new ropsten-bootnode and removed old one (#10794)
      - ethkey no longer uses byteorder (#10786)
      - Do not drop the peer with None difficulty (#10772)
      - docs: Update Readme with TOC, Contributor Guideline. Update Cargo package descriptions (#10652)
    s3krit authored Aug 12, 2019
    Configuration menu
    Copy the full SHA
    ff398fe View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2019

  1. v2.5.7 stable (#11006)

    * [trace] check mem diff within range (#11002)
    
    * Update version (v2.5.7-stable)
    s3krit authored Aug 29, 2019
    Configuration menu
    Copy the full SHA
    6bd7db9 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2019

  1. v2.5.8-stable (#11041)

    * add more tx tests (#11038)
    * Fix parallel transactions race-condition (#10995)
    * Add blake2_f precompile (#11017)
    * [trace] introduce trace failed to Ext (#11019)
    * Edit publish-onchain.sh to use https (#11016)
    * Fix deadlock in network-devp2p (#11013)
    * EIP 1108: Reduce alt_bn128 precompile gas costs (#11008)
    * xDai chain support and nodes list update (#10989)
    * EIP 2028: transaction gas lowered from 68 to 16 (#10987)
    * EIP-1344 Add CHAINID op-code (#10983)
    * manual publish jobs for releases, no changes for nightlies (#10977)
    * [blooms-db] Fix benchmarks (#10974)
    * Verify transaction against its block during import (#10954)
    * Better error message for rpc gas price errors (#10931)
    * tx-pool: accept local tx with higher gas price when pool full (#10901)
    * Fix fork choice (#10837)
    * Cleanup unused vm dependencies (#10787)
    * Fix compilation on recent nightlies (#10991)
    s3krit authored Sep 12, 2019
    Configuration menu
    Copy the full SHA
    45f27ce View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2019

  1. Configuration menu
    Copy the full SHA
    24a4fdf View commit details
    Browse the repository at this point in the history
  2. v2.5.8-stable (rev2) (#11051)

    * EIP 1884 Re-pricing of trie-size dependent operations  (#10992)
    * Implement EIP-1283 reenable transition, EIP-1706 and EIP-2200  (#10191)
    s3krit authored Sep 13, 2019
    Configuration menu
    Copy the full SHA
    7c7b181 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2019

  1. update CHANGELOG.md (#11057)

    s3krit authored Sep 16, 2019
    Configuration menu
    Copy the full SHA
    c52a6c8 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2019

  1. v2.5.9-stable (#11089)

    * ethcore/res: activate Istanbul on Ropsten, Görli, Rinkeby, Kovan (#11068)
    
    * ethcore/res: activate Istanbul on Ropsten block 6485846
    
    * ethcore/res: activate Istanbul on Goerli block 1561651
    
    * ethcore/res: use hex values for Istanbul specs
    
    * ethcore/res: fix trailing comma
    
    * ethcore/res: be pedantic about EIP-1283 in Petersburg and Istanbul test specs
    
    * ethcore/res: activate Istanbul on Rinkeby block 5435345
    
    * ethcore/res: activate Istanbul on Kovan block 14111141
    
    * ethcore/res: fix kovan istanbul number to 0xd751a5
    
    * [json-spec] make blake2 pricing spec more readable (#11034)
    
    * [json-spec] make blake2 pricing spec more readable
    
    * [ethcore] fix compilation
    
    * Manual backport of #11033
    s3krit authored Sep 26, 2019
    Configuration menu
    Copy the full SHA
    b2277f6 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md and version (#11093)

    * Update CHANGELOG.md and version
    s3krit authored Sep 26, 2019
    Configuration menu
    Copy the full SHA
    06c7096 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2019

  1. Configuration menu
    Copy the full SHA
    578fc87 View commit details
    Browse the repository at this point in the history