diff --git a/guides/client/node.mdx b/guides/client/node.mdx index 993adce5..878fad95 100644 --- a/guides/client/node.mdx +++ b/guides/client/node.mdx @@ -475,10 +475,10 @@ Stopping your node should be done any time you make changes to your config file rm -rf ~/.local/share/go-quai # Expand compressed db - tar -xvf quai-goldenage-backup.tgz + tar -I 'zstd -T0' -xvf quai-snapshot.tar.zst # Copy db into db directory - cp -r quai-goldenage-backup ~/.local/share/go-quai + cp -r quai-snapshot ~/.local/share/go-quai ``` @@ -490,10 +490,10 @@ Stopping your node should be done any time you make changes to your config file rm -rf ~/Library/Application\ Support/go-quai # Expand compressed db - tar -xvf quai-goldenage-backup.tgz + tar --use-compress-program='zstd -T0' -xvf quai-snapshot.tar.zst # Copy db into db directory - cp -r quai-goldenage-backup ~/Library/Application\ Support/go-quai + cp -r quai-snapshot ~/Library/Application\ Support/go-quai ```