diff --git a/cmd/0gchaind/main.go b/cmd/0gchaind/main.go index dcb80150..b6312969 100644 --- a/cmd/0gchaind/main.go +++ b/cmd/0gchaind/main.go @@ -11,9 +11,7 @@ import ( ) func main() { - fmt.Println("main") chaincfg.SetSDKConfig().Seal() - fmt.Println("main2") rootCmd := NewRootCmd() if err := svrcmd.Execute(rootCmd, chaincfg.EnvPrefix, chaincfg.DefaultNodeHome); err != nil { switch e := err.(type) { @@ -25,5 +23,4 @@ func main() { os.Exit(1) } } - fmt.Println("main3") } diff --git a/cmd/0gchaind/root.go b/cmd/0gchaind/root.go index b7cb50ba..ce4a769b 100644 --- a/cmd/0gchaind/root.go +++ b/cmd/0gchaind/root.go @@ -42,7 +42,6 @@ func customKeyringOptions() keyring.Option { // NewRootCmd creates a new root command for the 0g-chain blockchain. func NewRootCmd() *cobra.Command { - fmt.Println("NewRootCmd") encodingConfig := app.MakeEncodingConfig() initClientCtx := client.Context{}. WithCodec(encodingConfig.Marshaler). @@ -88,7 +87,6 @@ func NewRootCmd() *cobra.Command { } addSubCmds(rootCmd, encodingConfig, chaincfg.DefaultNodeHome) - fmt.Println("NewRootCmd2") return rootCmd } diff --git a/x/evmutil/keeper/conversion_evm_native_bep3.go b/x/evmutil/keeper/conversion_evm_native_bep3.go index b727996d..c63465ab 100644 --- a/x/evmutil/keeper/conversion_evm_native_bep3.go +++ b/x/evmutil/keeper/conversion_evm_native_bep3.go @@ -4,7 +4,7 @@ import ( "math/big" errorsmod "cosmossdk.io/errors" - "github.com/kava-labs/kava/x/evmutil/types" + "github.com/0glabs/0g-chain/x/evmutil/types" ) var ( diff --git a/x/evmutil/keeper/conversion_evm_native_bep3_test.go b/x/evmutil/keeper/conversion_evm_native_bep3_test.go index c2d06128..12d9f9b8 100644 --- a/x/evmutil/keeper/conversion_evm_native_bep3_test.go +++ b/x/evmutil/keeper/conversion_evm_native_bep3_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/kava-labs/kava/x/evmutil/testutil" - "github.com/kava-labs/kava/x/evmutil/types" + "github.com/0glabs/0g-chain/x/evmutil/testutil" + "github.com/0glabs/0g-chain/x/evmutil/types" ) type Bep3ConversionTestSuite struct { diff --git a/x/evmutil/keeper/msg_server_bep3_test.go b/x/evmutil/keeper/msg_server_bep3_test.go index d36c68fd..ee12ece1 100644 --- a/x/evmutil/keeper/msg_server_bep3_test.go +++ b/x/evmutil/keeper/msg_server_bep3_test.go @@ -4,8 +4,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/kava-labs/kava/x/evmutil/testutil" - "github.com/kava-labs/kava/x/evmutil/types" + "github.com/0glabs/0g-chain/x/evmutil/testutil" + "github.com/0glabs/0g-chain/x/evmutil/types" ) func (suite *MsgServerSuite) TestConvertCoinToERC20_Bep3() {