From 6e34832ffa458e26fc43c057f6289b4511a60d59 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 4 Oct 2023 16:12:10 +0200 Subject: [PATCH] Add warning about Node version in staking CLI guide --- docs/infra/validation/staking-cli.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/infra/validation/staking-cli.md b/docs/infra/validation/staking-cli.md index 0c386a049..21393bed2 100644 --- a/docs/infra/validation/staking-cli.md +++ b/docs/infra/validation/staking-cli.md @@ -633,3 +633,19 @@ Finished execution ```bash flare-stake-tool transaction importPC --ledger --blind ``` + +??? example "Unsupported digital routines" + + If you get the following error message: + + ```text + E: Error: error:0308010C:digital envelope routines::unsupported + ``` + + Make sure you are using the correct Node.js version, as advised in the [Prerequisites section](#prerequisites). + + You can find out the version of Node.js you are running with the following command: + + ```bash + node --version + ```