From b38c73bf1244ddf4053ba81c9bc71ecbf51221cd Mon Sep 17 00:00:00 2001 From: reo101 Date: Mon, 11 Dec 2023 14:31:00 +0200 Subject: [PATCH] =?UTF-8?q?style(rollup)!:=20=CE=B7-reduction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- coordinator/Makefile | 2 +- rollup/cmd/rollup_relayer/app/app.go | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/coordinator/Makefile b/coordinator/Makefile index 4362fc9426..8a47e92dbd 100644 --- a/coordinator/Makefile +++ b/coordinator/Makefile @@ -55,4 +55,4 @@ docker: docker_push: docker push limechain/coordinator-api:${IMAGE_VERSION} - docker push limechain/coordinator-cron:${IMAGE_VERSION} \ No newline at end of file + docker push limechain/coordinator-cron:${IMAGE_VERSION} diff --git a/rollup/cmd/rollup_relayer/app/app.go b/rollup/cmd/rollup_relayer/app/app.go index f53e992815..5345bb5401 100644 --- a/rollup/cmd/rollup_relayer/app/app.go +++ b/rollup/cmd/rollup_relayer/app/app.go @@ -35,9 +35,7 @@ func init() { app.Flags = append(app.Flags, utils.CommonFlags...) app.Flags = append(app.Flags, utils.RollupRelayerFlags...) app.Commands = []*cli.Command{} - app.Before = func(ctx *cli.Context) error { - return utils.LogSetup(ctx) - } + app.Before = utils.LogSetup // Register `rollup-relayer-test` app for integration-test. utils.RegisterSimulation(app, utils.RollupRelayerApp) }