We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa71315 commit fc89d99Copy full SHA for fc89d99
utils/nftport/retrieveContract.js
@@ -27,7 +27,7 @@ const retrieveContract = async () => {
27
`${basePath}/build/contract/_contract.json`,
28
JSON.stringify(response, null, 2)
29
);
30
- if (response.response === "OK" && response.error === null) {
+ if (response.response === "OK") {
31
console.log(`Contract ${CONTRACT_NAME} deployed successfully`);
32
} else {
33
console.log(`Contract ${CONTRACT_NAME} deployment failed`);
0 commit comments