You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Found both a public and private log for tag ${request.tag} from contract ${request.contractAddress}. This may indicate a contract bug. Returning the public log.`,
`Expected at most 1 public log for tag ${tag} and contract ${contractAddress.toString()}, got ${logsForTag.length}. This may indicate a contract bug. Returning the first log.`,
`public log for tag ${request.tag} and contract ${request.contractAddress.toString()}`,
80
71
);
81
-
}
72
+
constprivateLog=this.#extractSingleLog(allPrivateLogsPerTag[i],`private log for tag ${siloedTags[i]}`);
82
73
83
-
constscopedLog=logsForTag[0];
74
+
if(publicLog!==null&&privateLog!==null){
75
+
this.log.warn(
76
+
`Found both a public and private log for tag ${request.tag} from contract ${request.contractAddress}. This may indicate a contract bug. Returning the public log.`,
0 commit comments