From b0c710a3236c3d04cba7e111954a800d40236c2b Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Fri, 5 Aug 2022 19:08:39 +0100 Subject: [PATCH] Update README.md --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index eb75d9ac..d1a9bb7f 100644 --- a/README.md +++ b/README.md @@ -47,15 +47,13 @@ Check out included example iOS application for the `PasswordStorage` implementat Start network follower: -``` -let cMix: CMix = ... +```swift try cMix.startNetworkFollower(timeoutMS: 10_000) ``` Wait until connected: -``` -let cMix: CMix = ... +```swift let isNetworkHealthy = try cMix.waitForNetwork(timeoutMS: 30_000) ``` @@ -64,7 +62,6 @@ let isNetworkHealthy = try cMix.waitForNetwork(timeoutMS: 30_000) Use the cMix to make a new reception identity: ```swift -let cMix: CMix = ... let myIdentity = try cMix.makeReceptionIdentity() ``` -- GitLab