removing ellipses

This commit is contained in:
Ian Culp 2021-06-19 18:23:03 -05:00 committed by GitHub
parent a47fd6ef39
commit cb074778f8
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:
```java
String sentRawTransactionID = rpcClient.sendRawTransaction(srTx.hex());
System.out.println("Sent signedRawTx (txID): " + sentRawTransactionID);```
System.out.println("Sent signedRawTx (txID): " + sentRawTransactionID);
```
### Run Your Code