From 723f929f0cc23c3ba35191dd0519dc0b4dda086b Mon Sep 17 00:00:00 2001 From: Bruno Volpato Date: Fri, 15 Dec 2017 07:28:06 -0800 Subject: [PATCH] typo --- 12_7_Accessing_Bitcoind_with_Java.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12_7_Accessing_Bitcoind_with_Java.md b/12_7_Accessing_Bitcoind_with_Java.md index b534557..037118b 100644 --- a/12_7_Accessing_Bitcoind_with_Java.md +++ b/12_7_Accessing_Bitcoind_with_Java.md @@ -39,7 +39,7 @@ rpcClient.stop(); ### Making your first RPC Call -In order to use an RPC method using `JavaBitcoindRpcClient`, you'll find that the `BitcoindRpcClient` provides most of the functionality that can be accessed through `bitcloin-cli` or `curl`. +In order to use an RPC method using `JavaBitcoindRpcClient`, you'll find that the `BitcoindRpcClient` provides most of the functionality that can be accessed through `bitcoin-cli` or `curl`. For example, to execute the `getmininginfo`, you should use the `getMiningInfo()` method: ```java