From cb074778f807900bf8b2b84c1e08958f6bc764b0 Mon Sep 17 00:00:00 2001 From: Ian Culp <57159226+icculp@users.noreply.github.com> Date: Sat, 19 Jun 2021 18:23:03 -0500 Subject: [PATCH] removing ellipses --- 17_2_Accessing_Bitcoind_with_Java.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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