From 7ce2ae24699aa0a07a766ba542738d2f802df8f7 Mon Sep 17 00:00:00 2001 From: andrut-ds <82076528+andrut-ds@users.noreply.github.com> Date: Fri, 17 Nov 2023 13:59:16 +0700 Subject: [PATCH] Update index.md (#110) --- website/_i18n/en/user-guides/use-wallet-cli/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/_i18n/en/user-guides/use-wallet-cli/index.md b/website/_i18n/en/user-guides/use-wallet-cli/index.md index 9aea3b092..8ab165cff 100644 --- a/website/_i18n/en/user-guides/use-wallet-cli/index.md +++ b/website/_i18n/en/user-guides/use-wallet-cli/index.md @@ -272,14 +272,14 @@ Replace `
` with the address for which you want to retrieve its public k ### Get Private Key -You can get the public key of your address by this command: +You can get the private key of your address by this command: {% tabs address_prv ltr %} {% tab address_prv linux Linux %} ```text -./pactus-wallet --path ~/pactus/wallets/default_wallet address pub +./pactus-wallet --path ~/pactus/wallets/default_wallet address priv ``` {% endtab %} @@ -287,7 +287,7 @@ You can get the public key of your address by this command: {% tab address_prv mac macOS %} ```text -./pactus-wallet --path ~/pactus/wallets/default_wallet address pub +./pactus-wallet --path ~/pactus/wallets/default_wallet address priv ``` {% endtab %} @@ -295,7 +295,7 @@ You can get the public key of your address by this command: {% tab address_prv windows Windows %} ```text -pactus-wallet.exe c:\pactus\wallets\default_wallet address pub +pactus-wallet.exe c:\pactus\wallets\default_wallet address priv ``` {% endtab %}