Skip to content

Commit

Permalink
fix names, need to be identifiers to be usable in paths
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Apr 19, 2024
1 parent b859b19 commit d165e60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/util/ledger/migrations/cadence_values_migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func NewCadence1ValueMigrator(
}

return &CadenceBaseMigrator{
name: "cadence-value-migration",
name: "cadence_value_migration",
reporter: rwf.ReportWriter(cadenceValueMigrationReporterName),
diffReporter: diffReporter,
logVerboseDiff: opts.LogVerboseDiff,
Expand Down Expand Up @@ -334,7 +334,7 @@ func NewCadence1LinkValueMigrator(
}

return &CadenceBaseMigrator{
name: "cadence-link-value-migration",
name: "cadence_link_value_migration",
reporter: rwf.ReportWriter("cadence-link-value-migrator"),
diffReporter: diffReporter,
logVerboseDiff: opts.LogVerboseDiff,
Expand Down Expand Up @@ -381,7 +381,7 @@ func NewCadence1CapabilityValueMigrator(
}

return &CadenceBaseMigrator{
name: "cadence-capability-value-migration",
name: "cadence_capability_value_migration",
reporter: rwf.ReportWriter("cadence-capability-value-migrator"),
diffReporter: diffReporter,
logVerboseDiff: opts.LogVerboseDiff,
Expand Down

0 comments on commit d165e60

Please sign in to comment.