diff --git a/17_2_Accessing_Bitcoind_with_Java.md b/17_2_Accessing_Bitcoind_with_Java.md index ab85b40..26dbe1e 100644 --- a/17_2_Accessing_Bitcoind_with_Java.md +++ b/17_2_Accessing_Bitcoind_with_Java.md @@ -273,7 +273,7 @@ You now can sign transaction with the method `signRawTransactionWithKey`. This m Finally, sending requires the `sendRawTransaction` command: ```java String sentRawTransactionID = rpcClient.sendRawTransaction(srTx.hex()); -System.out.println("Sent signedRawTx (txID): " + sentRawTransactionID);``` +System.out.println("Sent signedRawTx (txID): " + sentRawTransactionID); ``` ### Run Your Code