Skip to content
This repository was archived by the owner on May 13, 2022. It is now read-only.

Use backslashes instead of slashes in examples #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions installation/starting-raiden-manually.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Download the latest Raiden [https://github.com/raiden-network/raiden/releases/ta
You can start Raiden with either Geth, Parity or Infura as RPC Endpoint. All you need is an Ethereum Account and the respective keystore file funded with the tokens you want to transfer.

```text
raiden /
--address $YOUR-ETHEREUM-ADDRESS /
--keystore-path $PATH-TO-YOUR-KEYSTORE-FILE /
--password-file $PASSWORD-FILE-FOR-KEYSTORE-FILE /
raiden \
--address $YOUR-ETHEREUM-ADDRESS \
--keystore-path $PATH-TO-YOUR-KEYSTORE-FILE \
--password-file $PASSWORD-FILE-FOR-KEYSTORE-FILE \
--eth-rpc-endpoint $YOUR-ETHEREUM-NODE
```

Expand All @@ -41,8 +41,8 @@ to see all possible CLI arguments.
Per default a **Pathfinding Service** is used by your Raiden client when a **mediated transfer** is initiated. The maximum amount paid for one request to the Pathfinding services is set to `0.05` RDN and 3 different paths are requested.

```text
--pathfinding-service-address auto /
--pathfinding-max-fee 50000000000000000 /
--pathfinding-service-address auto \
--pathfinding-max-fee 50000000000000000 \
--pathfinding-max-paths 3
```

Expand Down