From 735e15c9bca6e86f5e701f7894627c75d9f8802d Mon Sep 17 00:00:00 2001 From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Mon, 22 Jun 2020 15:43:35 +0200 Subject: [PATCH] Use backslashes instead of slashes in examples --- installation/starting-raiden-manually.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/installation/starting-raiden-manually.md b/installation/starting-raiden-manually.md index cd223b7..28a9eec 100644 --- a/installation/starting-raiden-manually.md +++ b/installation/starting-raiden-manually.md @@ -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 ``` @@ -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 ```