From c2882a6b3f16e40f705977884985ff4cb7f16c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Thu, 22 Aug 2024 08:09:57 -0700 Subject: [PATCH] fix EVM contract migration deploy minimal EVM contract and update to full --- internal/migrate/state.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/migrate/state.go b/internal/migrate/state.go index f69002ec9..50b6effde 100644 --- a/internal/migrate/state.go +++ b/internal/migrate/state.go @@ -96,7 +96,8 @@ func migrateState( err = emulatorMigrate.MigrateCadence1( store, stateFlags.SaveReport, - migrations.EVMContractChangeNone, + // Should match https://github.com/onflow/flow-go/blob/2a1e71eb64e200c7d82e8e31602c397f1939c893/cmd/util/cmd/execution-state-extract/cmd.go#L380-L381 + migrations.EVMContractChangeDeployMinimalAndUpdateFull, migrations.BurnerContractChangeDeploy, contracts, rwf,