We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68c4606 commit 283a76eCopy full SHA for 283a76e
apps/contract-verification/src/app/Verifiers/SourcifyVerifier.ts
@@ -134,6 +134,9 @@ export class SourcifyVerifier extends AbstractVerifier {
134
}
135
136
if (checkStatusResponse.error) {
137
+ if (checkStatusResponse.error.customCode === 'already_verified') {
138
+ return { status: 'already verified', receiptId, message: checkStatusResponse.error.message }
139
+ }
140
const message = checkStatusResponse.error.message || 'Unknown error'
141
return { status: 'failed', receiptId, message }
142
0 commit comments