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
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -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,