We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a530be commit 92f399aCopy full SHA for 92f399a
src/main/java/it/unipr/checker/TxOriginChecker.java
@@ -38,7 +38,8 @@ public boolean visit(
38
ProgramCounterLocation jumploc = (ProgramCounterLocation) jump.getLocation();
39
40
log.debug("Tx. Origin attack at {} at line no. {} coming from line {}", jumploc.getPc(),
41
- jumploc.getSourceCodeLine(), ((ProgramCounterLocation) origin.getLocation()).getSourceCodeLine());
+ jumploc.getSourceCodeLine(),
42
+ ((ProgramCounterLocation) origin.getLocation()).getSourceCodeLine());
43
44
String warn = "TxOrigin attack at " + jumploc.getPc();
45
tool.warn(warn);
0 commit comments