Skip to content

Commit 658c9f0

Browse files
committed
Removed possible event order warning logging
1 parent 5e485b9 commit 658c9f0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/java/it/unipr/crosschain/xEVMLiSA.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,10 +444,9 @@ public static void runEventOrderChecker(SmartContract contract, CustomPolicy pol
444444
}
445445
}
446446

447-
log.info("[OUT] Event order checker ended on {}, with {} definite and {} possible vulnerabilities found.",
447+
log.info("[OUT] Event order checker ended on {}, with {} warnings found.",
448448
contract.getName(),
449-
MyCache.getInstance().getEventOrderWarnings(contract.getCFG().hashCode()),
450-
MyCache.getInstance().getPossibleEventOrderWarnings(contract.getCFG().hashCode()));
449+
MyCache.getInstance().getEventOrderWarnings(contract.getCFG().hashCode()));
451450
}
452451

453452
/**

0 commit comments

Comments
 (0)