Skip to content

Commit

Permalink
use the DAL port
Browse files Browse the repository at this point in the history
  • Loading branch information
timothymcmackin committed Jan 22, 2024
1 parent 2590d03 commit 798ece2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/join-dal-baker/run-node.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Step 2: run an Octez node on Weeklynet

Once the Octez node has been configured to join Weeklynet, it's possible to launch it.
Once the Octez node has been configured to join Weeklynet, you an launch it and make its RPC available on the port that the DAL node expects to use:

```
octez-node run --rpc-addr localhost --log-output="$HOME/octez-node.log"
octez-node run --rpc-addr 127.0.0.1:8732 --log-output="$HOME/octez-node.log"
```

At first launch, the node will generate a fresh identity file used to identify itself on the Weeklynet L1 network, it then bootstraps the chain which means that it downloads and applies all the blocks. This takes a variable amount of time depending on when during the week these instructions are followed but at worse, on a tuesday evening, it takes a few hours. Fortunately, we can continue to set up our Weeklynet baking infrastructure while the node is bootstrapping, all we have to do for this is to use another, already bootstrapped, node as RPC endpoint for `octez-client` when we want to interact with the chain.
Expand Down

0 comments on commit 798ece2

Please sign in to comment.