Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

[ci] Fix #9822: trace_filter does not return failed contract creation #10140

Merged
merged 2 commits into from
Jan 11, 2019

Commits on Jan 2, 2019

  1. Fix #9822: trace_filter does not return failed contract creation

    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>
    xiaods committed Jan 2, 2019
    Configuration menu
    Copy the full SHA
    e635ae5 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2019

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