diff --git a/simapp/app/app.go b/simapp/app/app.go index 3ca4220..8956747 100644 --- a/simapp/app/app.go +++ b/simapp/app/app.go @@ -237,7 +237,7 @@ var ( BaseDenomUnit int64 = 18 // spawntag:evm BaseDenom = "mydenom" - DisplayDenom = "MY_DENOM_DISPLAY" // TODO: ? + DisplayDenom = "MY_DENOM_DISPLAY" // Bech32PrefixAccAddr defines the Bech32 prefix of an account's address Bech32PrefixAccAddr = Bech32Prefix @@ -363,7 +363,6 @@ func NewChainApp( baseAppOptions ...func(*baseapp.BaseApp), ) *ChainApp { - // TODO: verify // interfaceRegistry := GetInterfaceRegistry() // ?spawntag:evm // appCodec := codec.NewProtoCodec(interfaceRegistry) // ?spawntag:evm // legacyAmino := codec.NewLegacyAmino() // ?spawntag:evm diff --git a/spawn/cfg.go b/spawn/cfg.go index eb7ac0f..f967b52 100644 --- a/spawn/cfg.go +++ b/spawn/cfg.go @@ -315,7 +315,6 @@ func (cfg *NewChainConfig) SetupInterchainTest() error { }) } -// TODO: allow selecting for other chains to generate from (ethos, saga) // SetupLocalInterchainJSON sets up the local-interchain testnets configuration files. func (cfg *NewChainConfig) SetupLocalInterchainJSON() { diff --git a/spawn/remove_features.go b/spawn/remove_features.go index c0d8a04..ba6d68e 100644 --- a/spawn/remove_features.go +++ b/spawn/remove_features.go @@ -209,7 +209,6 @@ func (fc *FileContent) RemoveEVM() { fc.HandleAllTagged(text) - // TODO: ante/ ? fc.DeleteFile(path.Join("app", "config.go")) fc.DeleteFile(path.Join("app", "token_pair.go")) fc.DeleteFile(path.Join("app", "precompiles.go")) @@ -351,7 +350,6 @@ func (fc *FileContent) RemoveMint() { text := "mint" fc.HandleAllTagged(text) - // TODO: Fix this so it does not break fc.RemoveModuleFromText("MintKeeper", appGo) fc.RemoveModuleFromText("mintkeeper", appGo) fc.RemoveLineWithAnyMatch("minttypes.")