fix(common/rpc): 注释掉本地调试用的rpc地址配置

将原本用于本地调试的rpc地址配置注释掉,避免影响正式环境的rpc连接配置。
```
This commit is contained in:
2025-11-07 23:22:00 +08:00
parent e2a184b687
commit 0517447d9c

View File

@@ -112,7 +112,7 @@ func StartClient(id, port uint16, callback any) *struct {
} {
var rpcaddr, _ = service.NewBaseSysParamService().DataByKey(context.Background(), "server_ip")
//rpcaddr = "127.0.0.1"
closer1, err := jsonrpc.NewMergeClient(context.Background(),
"ws://"+rpcaddr+":"+rpcport, "", []interface{}{
&RPCClient,