Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions spawn/cfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,11 @@ func (cfg *NewChainConfig) SetupLocalInterchainJSON() {
if cfg.IsFeatureEnabled(InterchainSecurity) {
c.SetICSConsumerLink("localcosmos-1")
} else {
// Standalone testnet with no IBC connections
if err := localictypes.NewChainsConfig(c).SaveJSON(fmt.Sprintf("%s/chains/standalone.json", cfg.ProjectName)); err != nil {
panic(err)
}

// make this is an IBC testnet for POA/POS chains
c.SetAppendedIBCPathLink(CosmosHubProvider)
}
Expand Down
1 change: 1 addition & 0 deletions spawn/proto_parser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ service Msg {

t.Cleanup(func() {
os.RemoveAll(protoDir)
os.RemoveAll(path.Join(wd, "x"))
})
}

Expand Down