Skip to content

Commit 67e8457

Browse files
authored
Merge pull request #2229 from onflow/cf/disable-scaffold
Disable stablecoin scaffold
2 parents c8ae793 + 7397405 commit 67e8457

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/super/init.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ func startInteractiveInit(
262262
projectTypes := []ProjectType{
263263
ProjectTypeDefault,
264264
ProjectTypeScheduledTransactions,
265-
ProjectTypeStablecoin,
265+
// ProjectTypeStablecoin, // Temporarily disabled
266266
ProjectTypeDeFiActions,
267267
ProjectTypeCustom,
268268
}
@@ -296,7 +296,7 @@ func startInteractiveInit(
296296
return "", err
297297
}
298298
projectType = ProjectTypeDefault
299-
case ProjectTypeScheduledTransactions, ProjectTypeStablecoin, ProjectTypeDeFiActions:
299+
case ProjectTypeScheduledTransactions, ProjectTypeDeFiActions: // ProjectTypeStablecoin temporarily disabled
300300
err := installProjectDependencies(logger, state, tempDir, projectType)
301301
if err != nil {
302302
return "", err
@@ -312,7 +312,7 @@ func startInteractiveInit(
312312
}
313313

314314
// Add project-specific contract deployments
315-
if projectType == ProjectTypeScheduledTransactions || projectType == ProjectTypeStablecoin || projectType == ProjectTypeDeFiActions {
315+
if projectType == ProjectTypeScheduledTransactions || projectType == ProjectTypeDeFiActions { // ProjectTypeStablecoin temporarily disabled
316316
err = addContractDeployments(state, projectType)
317317
if err != nil {
318318
return "", err

0 commit comments

Comments
 (0)