Merge pull request #230 from icculp/patch-8

removing ellipses
This commit is contained in:
Shannon Appelcline 2021-06-22 08:57:55 -10:00 committed by GitHub
commit c9f31b3b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,7 +273,7 @@ You now can sign transaction with the method `signRawTransactionWithKey`. This m
Finally, sending requires the `sendRawTransaction` command: Finally, sending requires the `sendRawTransaction` command:
```java ```java
String sentRawTransactionID = rpcClient.sendRawTransaction(srTx.hex()); String sentRawTransactionID = rpcClient.sendRawTransaction(srTx.hex());
System.out.println("Sent signedRawTx (txID): " + sentRawTransactionID);``` System.out.println("Sent signedRawTx (txID): " + sentRawTransactionID);
``` ```
### Run Your Code ### Run Your Code