From afa98879abfc2ff374610ebe0394b137d764f705 Mon Sep 17 00:00:00 2001 From: emperorsixpacks Date: Fri, 10 Oct 2025 12:26:55 +0100 Subject: [PATCH] fix: update path --- docs/src/app/validator/page.tsx | 2 +- pkg/installer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/app/validator/page.tsx b/docs/src/app/validator/page.tsx index f7387a2..2e41527 100644 --- a/docs/src/app/validator/page.tsx +++ b/docs/src/app/validator/page.tsx @@ -113,7 +113,7 @@ export STARKNET_SALT="0x..."`} />

Start your validator client:

- +

Monitoring Your Validator

diff --git a/pkg/installer.go b/pkg/installer.go index e38265e..3ad90eb 100644 --- a/pkg/installer.go +++ b/pkg/installer.go @@ -243,7 +243,7 @@ func (i *installer) InstallClient(client types.ClientType) error { func (i *installer) UpdateClient(client types.ClientType) error { clientDir := i.getClientDirectory(client) clientPath := i.getClientPath(client, clientDir) - return i.installClient(client, clientDir, clientPath) + return i.installClient(client, clientPath, clientDir) } // getClientDirectory returns the appropriate directory for the client