Skip to content

Commit 82f2a0e

Browse files
authored
Merge pull request #1702 from onflow/bastian/fix-evm-contract-update-in-migration
Fix EVM contract migration
2 parents e248672 + c2882a6 commit 82f2a0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/migrate/state.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ func migrateState(
9696
err = emulatorMigrate.MigrateCadence1(
9797
store,
9898
stateFlags.SaveReport,
99-
migrations.EVMContractChangeNone,
99+
// Should match https://github.com/onflow/flow-go/blob/2a1e71eb64e200c7d82e8e31602c397f1939c893/cmd/util/cmd/execution-state-extract/cmd.go#L380-L381
100+
migrations.EVMContractChangeDeployMinimalAndUpdateFull,
100101
migrations.BurnerContractChangeDeploy,
101102
contracts,
102103
rwf,

0 commit comments

Comments
 (0)