From 75bb07b16d5579023307937557e58943b522b34b Mon Sep 17 00:00:00 2001 From: Matt Renaud Date: Fri, 17 Sep 2021 11:28:48 -0700 Subject: [PATCH] Rename document1 to did1 in README example. (#400) * Rename document1 to did1 in README example. Previously, the example used `document1` to refer to the DID, whereas the "document" isn't resolved until `account.resolve_identity()` is called. * Apply suggestions --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b42d785097..7617390cfd 100644 --- a/README.md +++ b/README.md @@ -101,30 +101,30 @@ use identity::iota::IotaDocument; async fn main() -> Result<()> { pretty_env_logger::init(); - // The Stronghold settings for the storage + // The Stronghold settings for the storage. let snapshot: PathBuf = "./example-strong.hodl".into(); let password: String = "my-password".into(); - // Create a new Account with Stronghold as the storage adapter + // Create a new Account with Stronghold as the storage adapter. let account: Account = Account::builder() .storage(AccountStorage::Stronghold(snapshot, Some(password))) .build() .await?; - // Create a new Identity with default settings - let snapshot1: IdentitySnapshot = account.create_identity(IdentityCreate::default()).await?; + // Create a new Identity with default settings. + let snapshot: IdentitySnapshot = account.create_identity(IdentityCreate::default()).await?; // Retrieve the DID from the newly created Identity state. - let document1: &IotaDID = snapshot1.identity().try_did()?; + let did: &IotaDID = snapshot.identity().try_did()?; - println!("[Example] Local Snapshot = {:#?}", snapshot1); - println!("[Example] Local Document = {:#?}", snapshot1.identity().to_document()?); + println!("[Example] Local Snapshot = {:#?}", snapshot); + println!("[Example] Local Document = {:#?}", snapshot.identity().to_document()?); println!("[Example] Local Document List = {:#?}", account.list_identities().await); // Fetch the DID Document from the Tangle // // This is an optional step to ensure DID Document consistency. - let resolved: IotaDocument = account.resolve_identity(document1).await?; + let resolved: IotaDocument = account.resolve_identity(did).await?; println!("[Example] Tangle Document = {:#?}", resolved);