diff --git a/lib/modules/coverage/contract_source.js b/lib/modules/coverage/contract_source.js index 5b25e360..579442f7 100644 --- a/lib/modules/coverage/contract_source.js +++ b/lib/modules/coverage/contract_source.js @@ -294,7 +294,7 @@ class ContractSource { // Try to match the contract to the bytecode. If it doesn't, // then we bail. contractMatches = trace.structLogs.every((step) => { return bytecode[step.pc]; }); - if(!contractMatches) break; + if(!contractMatches) continue; trace.structLogs.forEach((step) => { step = bytecode[step.pc];