Removed debugger
This commit is contained in:
parent
25fc22e576
commit
80711c1586
@ -17,11 +17,9 @@ class TraceClassifier:
|
|||||||
self._decoders_by_abi_name: Dict[str, ABIDecoder] = {}
|
self._decoders_by_abi_name: Dict[str, ABIDecoder] = {}
|
||||||
|
|
||||||
for spec in self._classifier_specs:
|
for spec in self._classifier_specs:
|
||||||
#import pdb; pdb.set_trace()
|
|
||||||
abi = get_abi(spec.abi_name, spec.protocol)
|
abi = get_abi(spec.abi_name, spec.protocol)
|
||||||
|
|
||||||
if abi is None:
|
if abi is None:
|
||||||
import pdb; pdb.set_trace()
|
|
||||||
raise ValueError(f"No ABI found for {spec.abi_name}")
|
raise ValueError(f"No ABI found for {spec.abi_name}")
|
||||||
|
|
||||||
decoder = ABIDecoder(abi)
|
decoder = ABIDecoder(abi)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user