-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
dryrun
bug when verifying multiple contracts
This fix needs to be applied into the `server` service, hence we apply a patch to do so. Moreover, a test case has been included to assert the fix works properly. Signed-off-by: Luis Mastrangelo <[email protected]>
- Loading branch information
Showing
6 changed files
with
8,154 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/services/server/src/server/controllers/verification/verification.common.ts b/services/server/src/server/controllers/verification/verification.common.ts | ||
index d9317900..e9a0b13c 100644 | ||
--- a/services/server/src/server/controllers/verification/verification.common.ts | ||
+++ b/services/server/src/server/controllers/verification/verification.common.ts | ||
@@ -460,7 +460,7 @@ export const verifyContractsInSession = async ( | ||
logger.info("dryRun verification", { | ||
sessionId: session.id, | ||
}); | ||
- return; | ||
+ continue; | ||
} | ||
if (match.runtimeMatch || match.creationMatch) { | ||
await storageService.storeMatch(checkedContract, match); |
Submodule sourcify
updated
19 files
+6 −0 | CHANGELOG.md | |
+13 −13 | package-lock.json | |
+1 −1 | package.json | |
+4 −0 | packages/contract-call-decoder/CHANGELOG.md | |
+1 −1 | packages/contract-call-decoder/package.json | |
+6 −0 | packages/lib-sourcify/CHANGELOG.md | |
+1 −1 | packages/lib-sourcify/package.json | |
+0 −338 | scripts/release.sh | |
+7 −0 | scripts/release/main.sh | |
+4 −0 | services/database/CHANGELOG.md | |
+1 −1 | services/database/package.json | |
+4 −0 | services/monitor/CHANGELOG.md | |
+2 −2 | services/monitor/package.json | |
+16 −0 | services/server/CHANGELOG.md | |
+2 −2 | services/server/package.json | |
+8 −0 | services/server/src/sourcify-chains-default.json | |
+16 −0 | services/server/test/chains/chain-tests.spec.ts | |
+4 −0 | ui/CHANGELOG.md | |
+1 −1 | ui/package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.