revise file structure in cmd

This commit is contained in:
Solovyov1796 2024-05-01 12:26:39 +08:00 committed by 0g-wh
parent 6a197a5db5
commit cc4f72b165
20 changed files with 14 additions and 12 deletions

View File

@ -1,4 +1,4 @@
package cmd
package main
import (
"errors"

View File

@ -1,4 +1,4 @@
package cmd
package main
import (
"encoding/json"

View File

@ -1,5 +1,5 @@
// Sourced from https://github.com/evmos/ethermint/blob/main/cmd/ethermintd/genaccounts.go
package cmd
package main
import (
"bufio"

View File

@ -6,14 +6,16 @@ import (
"github.com/cosmos/cosmos-sdk/server"
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
"github.com/0glabs/0g-chain/app"
"github.com/0glabs/0g-chain/cmd/kava/cmd"
"github.com/0glabs/0g-chain/chaincfg"
)
func main() {
rootCmd := cmd.NewRootCmd()
chaincfg.SetSDKConfig().Seal()
chaincfg.RegisterDenoms()
if err := svrcmd.Execute(rootCmd, cmd.EnvPrefix, app.DefaultNodeHome); err != nil {
rootCmd := NewRootCmd()
if err := svrcmd.Execute(rootCmd, chaincfg.EnvPrefix, chaincfg.DefaultNodeHome); err != nil {
switch e := err.(type) {
case server.ErrorCode:
os.Exit(e.Code)

View File

@ -1,4 +1,4 @@
package cmd
package main
import (
"github.com/cosmos/cosmos-sdk/client"

View File

@ -1,4 +1,4 @@
package cmd
package main
import (
"fmt"
@ -25,7 +25,7 @@ import (
"github.com/0glabs/0g-chain/app"
"github.com/0glabs/0g-chain/app/params"
"github.com/0glabs/0g-chain/cmd/kava/opendb"
"github.com/0glabs/0g-chain/cmd/opendb"
)
// EnvPrefix is the prefix environment variables must have to configure the app.

View File

@ -1,4 +1,4 @@
package cmd
package main
import (
"context"

View File

@ -1,4 +1,4 @@
package cmd
package main
import (
"github.com/cosmos/cosmos-sdk/client"