From 4631ec94a9c11fed1748c5fa14e0234775aa0e47 Mon Sep 17 00:00:00 2001 From: agorise Date: Thu, 18 Nov 2021 19:45:19 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e24059d..e4f681d 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ allprojects { } ``` -In yout app module, add the following dependency: +In your app module, add the following dependency: ```Groovy dependencies { @@ -43,7 +43,7 @@ operationList.add(transferOperation); Transaction transaction = new Transaction(sourcePrivateKey, null, operationList); ``` -From here on, it is just a matter of creating a websocket connection and using a custom handler called +From here on out, it is just a matter of creating a websocket connection and using a custom handler called ```TransactionBroadcastSequence``` in order to broadcast it to the witness node. ```java