diff --git a/docs/Build/node-cli.md b/docs/Build/node-cli.md index 4fddd1f58..6cd4a40f8 100644 --- a/docs/Build/node-cli.md +++ b/docs/Build/node-cli.md @@ -18,8 +18,8 @@ You can use the instructions below to build the cardano-node, same steps can be ``` bash git fetch --tags --all -# Replace tag 1.18 with the version/branch you'd like to build -git checkout 1.18.0 +# Replace release 1.18.x with the version/branch/tag you'd like to build +git checkout release/1.18.x git pull echo -e "package cardano-crypto-praos\n flags: -external-libsodium-vrf" > cabal.project.local diff --git a/docs/Scripts/itnrewards.md b/docs/Scripts/itnrewards.md index 8c5a24fc3..43fd7376b 100644 --- a/docs/Scripts/itnrewards.md +++ b/docs/Scripts/itnrewards.md @@ -28,12 +28,11 @@ graph TB cd $CNODE_HOME/scripts ./itnRewards.sh MyITNWallet ~/jormu/account/priv/owner.sk ~/jormu/account/priv/owner.pk ``` -- However, if an extended secret key was used(ed25519e_sk), a special version of cardano-cli is needed to convert the key. +- However, if an extended secret key was used(ed25519e_sk), a recent version (min 1.18.x) of cardano-cli is needed to convert the key. - Follow these instructions to build this version of cardano-cli: ``` bash cd ~/git/cardano-node # Go to folder where you normally build cardano-node -git checkout -b jordan/cli-handle-extended-itn-keys -git branch --set-upstream-to origin/jordan/cli-handle-extended-itn-keys jordan/cli-handle-extended-itn-keys +git checkout release/1.18.x git pull $CNODE_HOME/scripts/cabal-build-all.sh ```