We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffdb518 commit 3a54ee0Copy full SHA for 3a54ee0
src/dry-run/index.ts
@@ -65,11 +65,10 @@ const resources = mintIngestorResources();
65
).length;
66
if (totalCalls - failedCalls > 0) {
67
console.log(`✅ Although one or more (${failedCalls}) Error Occurred [execution reverted] Contract Execution Completed`);
68
- console.log(JSON.stringify(simulationResult, null, 2));
69
} else {
70
console.log('❌ Simulation Failed');
71
72
}
+ console.log(JSON.stringify(simulationResult, null, 2));
73
74
} catch (error) {
75
console.error(error);
0 commit comments