From 265e267b3b30f4984f7f6ed4c831ee05dae4575f Mon Sep 17 00:00:00 2001 From: i-norden Date: Fri, 31 Dec 2021 13:20:27 -0600 Subject: [PATCH] fix start msg --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 02b3359..fd814d5 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -38,7 +38,7 @@ var rootCmd = &cobra.Command{ // Execute adds all child commands to the root command and sets flags appropriately. // This is called by main.main(). It only needs to happen once to the rootCmd. func Execute() { - log.Info("----- Starting IPFS blockchain watcher -----") + log.Info("----- Starting levelDB ethdb RPC server -----") if err := rootCmd.Execute(); err != nil { log.Fatal(err) }