openethereum/ethcore/src/trace
Tomasz Drwięga 1ac1224cd3 Fix #9822: trace_filter does not return failed contract creation (#10140)
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>
2019-01-11 18:08:58 +01:00
..
types Fix #9822: trace_filter does not return failed contract creation (#10140) 2019-01-11 18:08:58 +01:00
config.rs misc: bump license header to 2019 (#10135) 2019-01-07 11:33:07 +01:00
db.rs misc: bump license header to 2019 (#10135) 2019-01-07 11:33:07 +01:00
executive_tracer.rs misc: bump license header to 2019 (#10135) 2019-01-07 11:33:07 +01:00
import.rs misc: bump license header to 2019 (#10135) 2019-01-07 11:33:07 +01:00
mod.rs misc: bump license header to 2019 (#10135) 2019-01-07 11:33:07 +01:00
noop_tracer.rs misc: bump license header to 2019 (#10135) 2019-01-07 11:33:07 +01:00