Skip to content

Commit

Permalink
add new required argument
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Jul 30, 2024
1 parent 234a346 commit 0e6de67
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,14 @@ func TestContractCheckingMigrationProgramRecovery(t *testing.T) {
// Run contract checking migration

log := zerolog.Nop()
checkingMigration := NewContractCheckingMigration(log, rwf, chainID, false, programs)
checkingMigration := NewContractCheckingMigration(
log,
rwf,
chainID,
false,
nil,
programs,
)

err = checkingMigration(registersByAccount)
require.NoError(t, err)
Expand Down

0 comments on commit 0e6de67

Please sign in to comment.