Skip to content

Commit 017df09

Browse files
authored
minor change in downloading pathfinder snapshots
1 parent 19967a9 commit 017df09

File tree

1 file changed

+3
-3
lines changed
  • components/Starknet/modules/guides/pages/staking-on-starknet

1 file changed

+3
-3
lines changed

components/Starknet/modules/guides/pages/staking-on-starknet/pathfinder.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ Next, create a new `$HOME/pathfinder` directory, navigate into it, and use rclon
6363
----
6464
mkdir $HOME/pathfinder
6565
cd $HOME/pathfinder
66-
rclone copy -P pathfinder-snapshots:pathfinder-snapshots/<FILENAME> .
66+
rclone copy -P pathfinder-snapshots:pathfinder-snapshots/<FILENAME> snapshot.sqlite.zst
6767
----
6868

6969
Once the database snapshot is downloaded, compare the file's checksum value with the one shown at https://rpc.pathfinder.equilibrium.co/snapshots/latest[rpc.pathfinder.equilibrium.co/snapshots/latest^] by running:
7070

7171
[source,terminal]
7272
----
73-
sha256sum <FILENAME>
73+
sha256sum snapshot.sqlite.zst
7474
----
7575

7676
If the checksum values match, extract the downloaded database snapshot by running:
7777

7878
[source,terminal]
7979
----
80-
zstd -T0 -d <FILENAME> -o testnet-sepolia.sqlite
80+
zstd -T0 -d snapshot.sqlite.zst -o snapshot.sqlite
8181
----
8282

8383
=== Running the node

0 commit comments

Comments
 (0)