From 596373dc9df121be4d5f63971e19407530f16fef Mon Sep 17 00:00:00 2001 From: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Date: Fri, 21 May 2021 06:24:53 -0400 Subject: [PATCH] makefile: fix `make` (#33) --- Makefile | 2 +- app/app.go | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 806bb43b..062bf3fe 100755 --- a/Makefile +++ b/Makefile @@ -120,7 +120,7 @@ ldflags := $(strip $(ldflags)) BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' -all: tools verify install +all: tools install ############################################################################### ### Build ### diff --git a/app/app.go b/app/app.go index 71d11f45..871a1c27 100644 --- a/app/app.go +++ b/app/app.go @@ -169,6 +169,8 @@ var _ simapp.App = (*EthermintApp)(nil) // Tendermint consensus. type EthermintApp struct { *baseapp.BaseApp + + // encoding cdc *codec.LegacyAmino appCodec codec.Marshaler interfaceRegistry types.InterfaceRegistry @@ -210,7 +212,7 @@ type EthermintApp struct { sm *module.SimulationManager } -// NewEthermintApp returns a reference to a new initialized Injective application. +// NewEthermintApp returns a reference to a new initialized Ethermint application. func NewEthermintApp( logger log.Logger, db dbm.DB,