mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-10-31 14:47:29 +00:00 
			
		
		
		
	revise file structure in cmd
This commit is contained in:
		
							parent
							
								
									b1365fb792
								
							
						
					
					
						commit
						77ec52e16b
					
				| @ -1,4 +1,4 @@ | |||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"errors" | 	"errors" | ||||||
| @ -1,4 +1,4 @@ | |||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"encoding/json" | 	"encoding/json" | ||||||
| @ -1,5 +1,5 @@ | |||||||
| // Sourced from https://github.com/evmos/ethermint/blob/main/cmd/ethermintd/genaccounts.go
 | // Sourced from https://github.com/evmos/ethermint/blob/main/cmd/ethermintd/genaccounts.go
 | ||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"bufio" | 	"bufio" | ||||||
| @ -6,14 +6,16 @@ import ( | |||||||
| 	"github.com/cosmos/cosmos-sdk/server" | 	"github.com/cosmos/cosmos-sdk/server" | ||||||
| 	svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" | 	svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" | ||||||
| 
 | 
 | ||||||
| 	"github.com/0glabs/0g-chain/app" | 	"github.com/0glabs/0g-chain/chaincfg" | ||||||
| 	"github.com/0glabs/0g-chain/cmd/kava/cmd" |  | ||||||
| ) | ) | ||||||
| 
 | 
 | ||||||
| func main() { | 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) { | 		switch e := err.(type) { | ||||||
| 		case server.ErrorCode: | 		case server.ErrorCode: | ||||||
| 			os.Exit(e.Code) | 			os.Exit(e.Code) | ||||||
| @ -1,4 +1,4 @@ | |||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"github.com/cosmos/cosmos-sdk/client" | 	"github.com/cosmos/cosmos-sdk/client" | ||||||
| @ -1,4 +1,4 @@ | |||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"fmt" | 	"fmt" | ||||||
| @ -1,4 +1,4 @@ | |||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"context" | 	"context" | ||||||
| @ -1,4 +1,4 @@ | |||||||
| package cmd | package main | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"github.com/cosmos/cosmos-sdk/client" | 	"github.com/cosmos/cosmos-sdk/client" | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Solovyov1796
						Solovyov1796