File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
v-next/hardhat-ignition/src/internal/tasks Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export async function internalVerifyAction(
4545
4646 if ( enabledProviders . length === 0 ) {
4747 console . warn ( chalk . yellow ( "\n⚠️ No verification providers are enabled." ) ) ;
48+
4849 return ;
4950 }
5051
@@ -61,9 +62,9 @@ export async function internalVerifyAction(
6162 ) ) {
6263 if ( typeof contractInfo === "string" ) {
6364 console . log (
64- `Could not resolve contract artifacts for contract "${ contractInfo } ". Skipping verification.` ,
65+ `Could not resolve contract artifacts for contract "${ contractInfo } ". Skipping verification.\n ` ,
6566 ) ;
66- console . log ( "" ) ;
67+
6768 continue ;
6869 }
6970
@@ -74,6 +75,7 @@ export async function internalVerifyAction(
7475 for ( const provider of enabledProviders ) {
7576 try {
7677 console . log ( chalk . cyan . bold ( `\n=== ${ capitalize ( provider ) } ===` ) ) ;
78+
7779 await verifyContractFn (
7880 {
7981 ...contractInfo ,
@@ -84,6 +86,7 @@ export async function internalVerifyAction(
8486 ) ;
8587 } catch ( error ) {
8688 ensureError ( error ) ;
89+
8790 console . error ( chalk . red ( error . message ) ) ;
8891 }
8992 }
You can’t perform that action at this time.
0 commit comments