From d5d97af71eec04d6ffcec4dd416e7f8f13d76cf4 Mon Sep 17 00:00:00 2001 From: Miles Chen Date: Thu, 14 Mar 2024 16:14:32 +0800 Subject: [PATCH] website: fix account management * Fix initialize Clef command --- docs/fundamentals/account-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fundamentals/account-management.md b/docs/fundamentals/account-management.md index ea9e6dce29..3d904e8224 100644 --- a/docs/fundamentals/account-management.md +++ b/docs/fundamentals/account-management.md @@ -10,7 +10,7 @@ Geth uses an external signer called [Clef](/docs/tools/clef/introduction) to man The first time Clef is used it needs to be initialized with a master seed that unlocks Clef's secure vault and a path where the vault should be located. Clef will use the vault to store passwords for keystores, javascript auto-signing rules and hashes of rule files. To initialize Clef, pass a vault path to `clef init`, for example to store it in a new directory inside `/home/user/go-ethereum`: ```sh -clef init /home/user/go-ethereum/clefdata +clef init --configdir /home/user/go-ethereum/clefdata ``` It is extremely important to remember the master seed and keep it secure. It allows access to the accounts under Clef's management.