Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions e2e/app/admin/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,6 @@ func Test(ctx context.Context, def app.Definition) error {
return err
}

/*
if err := testUpgradeBridgeNative(ctx, def); err != nil {
return err
}
*/

if err := testUpgradeBridgeL1(ctx, def); err != nil {
return err
}

log.Info(ctx, "Done.")

return nil
Expand Down Expand Up @@ -154,26 +144,6 @@ func testUpgradeStaking(ctx context.Context, def app.Definition) error {
return nil
}

/*
func testUpgradeBridgeNative(ctx context.Context, def app.Definition) error {
err := UpgradeBridgeNative(ctx, def, Config{Broadcast: true})
if err != nil {
return errors.Wrap(err, "upgrade bridge native")
}

return nil
}
*/

func testUpgradeBridgeL1(ctx context.Context, def app.Definition) error {
err := UpgradeBridgeL1(ctx, def, Config{Broadcast: true})
if err != nil {
return errors.Wrap(err, "upgrade bridge l1")
}

return nil
}

func testEnsurePortalSpec(ctx context.Context, def app.Definition) error {
chains := def.Testnet.EVMChains()
expected := randPortalSpec(chains)
Expand Down
Loading