applied a reverse patch from 0b3f4d6 since it seems paritytech/parity-ethereum/issues/9822 was fixed

This commit is contained in:
Tetsuya Morimoto
2019-04-09 08:59:54 +09:00
parent 99803a772e
commit eba4e4e58e
2 changed files with 8 additions and 13 deletions

View File

@@ -35,10 +35,6 @@ class MockWeb3Provider(IPCProvider):
to = params[0]['to'].lower()
data = params[0]['data']
file_name = '{}_{}_{}.json'.format(method, to, data)
# TODO: Remove this when this issue is fixed
# https://github.com/paritytech/parity-ethereum/issues/9822
elif method == 'trace_block':
file_name = 'trace_filter.json'
else:
file_name = method + '.json'
file_content = self.read_resource(file_name)