makefile: fix make (#33)

This commit is contained in:
Federico Kunze 2021-05-21 06:24:53 -04:00 committed by GitHub
parent 293c5edfd0
commit 596373dc9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -120,7 +120,7 @@ ldflags := $(strip $(ldflags))
BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)'
all: tools verify install all: tools install
############################################################################### ###############################################################################
### Build ### ### Build ###

View File

@ -169,6 +169,8 @@ var _ simapp.App = (*EthermintApp)(nil)
// Tendermint consensus. // Tendermint consensus.
type EthermintApp struct { type EthermintApp struct {
*baseapp.BaseApp *baseapp.BaseApp
// encoding
cdc *codec.LegacyAmino cdc *codec.LegacyAmino
appCodec codec.Marshaler appCodec codec.Marshaler
interfaceRegistry types.InterfaceRegistry interfaceRegistry types.InterfaceRegistry
@ -210,7 +212,7 @@ type EthermintApp struct {
sm *module.SimulationManager 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( func NewEthermintApp(
logger log.Logger, logger log.Logger,
db dbm.DB, db dbm.DB,