OSDN Git Service

fix the bug (#372)
[bytom/vapor.git] / util / util.go
index f26da96..e77696b 100644 (file)
@@ -14,17 +14,17 @@ const (
        Success = iota
        // ErrLocalExe indicates error occurs before the rpc calling.
        ErrLocalExe
-       // ErrConnect indicates error occurs connecting to the bytomd, e.g.,
-       // bytomd can't parse the received arguments.
+       // ErrConnect indicates error occurs connecting to the vapord, e.g.,
+       // vapord can't parse the received arguments.
        ErrConnect
        // ErrLocalParse indicates error occurs locally when parsing the response.
        ErrLocalParse
-       // ErrRemote indicates error occurs in bytomd.
+       // ErrRemote indicates error occurs in vapord.
        ErrRemote
 )
 
 var (
-       coreURL = env.String("BYTOM_URL", "http://127.0.0.1:9888")
+       coreURL = env.String("BYTOM_URL", "http://127.0.0.1:9889")
 )
 
 // Wraper rpc's client
@@ -51,7 +51,7 @@ func ClientCall(path string, req ...interface{}) (interface{}, int) {
                jww.ERROR.Println(response.Msg)
                return nil, ErrRemote
        case "":
-               jww.ERROR.Println("Unable to connect to the bytomd")
+               jww.ERROR.Println("Unable to connect to the vapord")
                return nil, ErrConnect
        }