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
"message": "Direct usage of window._paq is not allowed. Use one of these alternatives instead:\n 1. TrackingContext: track(eventBuilder)\n 2. MatomoManager: matomoManager.trackEvent(...)\n 3. Matomo Plugin: plugin.call('matomo', 'track', ...)\n 4. Helper: trackMatomoEvent(plugin, eventBuilder)"
"message": "Direct usage of window._paq methods is not allowed. Use one of these alternatives instead:\n 1. TrackingContext: track(eventBuilder)\n 2. MatomoManager: matomoManager.trackEvent(...)\n 3. Matomo Plugin: plugin.call('matomo', 'track', ...)\n 4. Helper: trackMatomoEvent(plugin, eventBuilder)"
Copy file name to clipboardExpand all lines: apps/contract-verification/src/app/Verifiers/EtherscanVerifier.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@ export class EtherscanVerifier extends AbstractVerifier {
144
144
145
145
if(!response.ok){
146
146
constresponseText=awaitresponse.text()
147
-
console.error('Error on Etherscan API check verification status at '+this.apiUrl+'\nStatus: '+response.status+'\nResponse: '+responseText)
147
+
console.error('Error on API check verification status at '+this.apiUrl+'\nStatus: '+response.status+'\nResponse: '+responseText)
148
148
thrownewError(responseText)
149
149
}
150
150
@@ -163,12 +163,12 @@ export class EtherscanVerifier extends AbstractVerifier {
163
163
return{status: 'already verified', receiptId }
164
164
}
165
165
if(checkStatusResponse.result==='Unknown UID'){
166
-
console.error('Error on Etherscan API check verification status at '+this.apiUrl+'\nStatus: '+checkStatusResponse.status+'\nMessage: '+checkStatusResponse.message+'\nResult: '+checkStatusResponse.result)
166
+
console.error('Error on API check verification status at '+this.apiUrl+'\nStatus: '+checkStatusResponse.status+'\nMessage: '+checkStatusResponse.message+'\nResult: '+checkStatusResponse.result)
console.error('Error on Etherscan API check verification status at '+this.apiUrl+'\nStatus: '+checkStatusResponse.status+'\nMessage: '+checkStatusResponse.message+'\nResult: '+checkStatusResponse.result)
171
+
console.error('Error on API check verification status at '+this.apiUrl+'\nStatus: '+checkStatusResponse.status+'\nMessage: '+checkStatusResponse.message+'\nResult: '+checkStatusResponse.result)
0 commit comments