From 2543bc81b98ec4ca5c568947c5175dfe4d95b5e9 Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Fri, 3 Nov 2017 23:46:51 +0000 Subject: [PATCH] Fix docker tag in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eda801b08..c84c57df3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ sudo docker run \ -v $HOME/.lightning:/root/.lightning \ -v $HOME/.bitcoin:/root/.bitcoin \ -p 9735:9735 \ - cdecker/lightningd:master + cdecker/lightningd:latest ``` ### Starting `lightningd` @@ -104,7 +104,7 @@ The route contains the path that the payment will take throught the Lightning Ne ``` route=$(cli/lightning-cli getroute 1 | jq --raw-output .route -) -cli/lightning-cli sendpay $route +cli/lightning-cli sendpay "$route" ``` Notice that in the first step we stored the route in a variable and reused it in the second step.