Skip to content

Commit

Permalink
fix: verify contract params format (#1536)
Browse files Browse the repository at this point in the history
* fix getVerificationId request params

* remove unnecessary changes
  • Loading branch information
vincentysc authored Nov 13, 2024
1 parent cf39322 commit 02e751e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class ZkSyncExplorerService extends VerificationService<
try {
const [verifyUrl, params] = extractQueryParams(this.verifyUrl);
const request = this.generateRequest(req);
const response = await axios.post(verifyUrl, request, params);
const response = await axios.post(verifyUrl, request, { params });
const zkSyncBlockExplorerResponse = new ZkSyncBlockExplorerVerificationIdResponse(response);

if (!zkSyncBlockExplorerResponse.isOk()) {
Expand Down

0 comments on commit 02e751e

Please sign in to comment.