@clawlabz/clawnetwork 0.1.9 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.ts +2 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -2335,6 +2335,8 @@ export default function register(api: OpenClawApi) {
|
|
|
2335
2335
|
if (state.running) {
|
|
2336
2336
|
api.logger?.info?.(`[clawnetwork] node already running (pid=${state.pid}), skipping node start`)
|
|
2337
2337
|
startHealthCheck(cfg, api)
|
|
2338
|
+
// Start UI dashboard (may have been lost on gateway restart)
|
|
2339
|
+
startUiServer(cfg, api)
|
|
2338
2340
|
// Still need to ensure heartbeat loop is running (may have been lost on gateway restart)
|
|
2339
2341
|
const wallet = ensureWallet(cfg.network, api)
|
|
2340
2342
|
await sleep(5_000)
|
package/openclaw.plugin.json
CHANGED