Browse Source

dchat-cli: change dchatd default port

oars 1 year ago
parent
commit
a5a063f05d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      example/dchat/dchat-cli/main.py

+ 1 - 1
example/dchat/dchat-cli/main.py

@@ -82,7 +82,7 @@ class JsonRpc:
 
 
 async def main(argv):
-    endpoint = "localhost:51345"
+    endpoint = "localhost:51054"
     for i in range(1, len(argv)):
         if argv[i] == "-e":
             endpoint = argv[i+1]