From d9952f680ab95f0fb9c1c2c346c079b2914c76b4 Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Tue, 1 Apr 2025 07:28:03 -0500 Subject: [PATCH] remove todos --- simapp/app/app.go | 3 +-- spawn/cfg.go | 1 - spawn/remove_features.go | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/simapp/app/app.go b/simapp/app/app.go index 3ca4220e..89567475 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 eb7ac0f1..f967b529 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 c0d8a046..ba6d68e7 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.")