From 16c304a4c1fba7f19408699acb7a0edc47a23739 Mon Sep 17 00:00:00 2001 From: Karlson Lee Date: Mon, 9 Apr 2018 21:01:39 +0100 Subject: [PATCH] docs/grpc/python remove witness_only --- docs/grpc/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/grpc/python.md b/docs/grpc/python.md index 3728c5ca..593d7645 100644 --- a/docs/grpc/python.md +++ b/docs/grpc/python.md @@ -76,7 +76,7 @@ is at the default `localhost:10009`, with an open channel between the two nodes. ```python # Retrieve and display the wallet balance -response = stub.WalletBalance(ln.WalletBalanceRequest(witness_only=True)) +response = stub.WalletBalance(ln.WalletBalanceRequest()) print(response.total_balance) ```