Skip to content

Commit

Permalink
add required arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Mar 12, 2024
1 parent 92851fc commit 5b2daca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion internal/migrate/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,14 @@ func migrateState(
rwf = &migration.NOOPReportWriterFactory{}
}

err = emulatorMigrate.MigrateCadence1(store, contracts, rwf, logger)
err = emulatorMigrate.MigrateCadence1(
store,
migrations.EVMContractChangeNone,
migrations.BurnerContractChangeDeploy,
contracts,
rwf,
logger,
)
if err != nil {
return nil, fmt.Errorf("failed to migrate database: %w", err)
}
Expand Down

0 comments on commit 5b2daca

Please sign in to comment.