From a10a10ee7b1ac01b372194af707d31390e5dad8c Mon Sep 17 00:00:00 2001 From: Doris Benda Date: Wed, 22 Nov 2023 22:42:06 +0300 Subject: [PATCH] Address comments --- concordium-rust-sdk | 2 +- examples/cis3-nft-sponsored-txs/tests/tests.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/concordium-rust-sdk b/concordium-rust-sdk index 56cd048c..a8afb739 160000 --- a/concordium-rust-sdk +++ b/concordium-rust-sdk @@ -1 +1 @@ -Subproject commit 56cd048ce8e7354be7fd151a418e3f7038e11c14 +Subproject commit a8afb73961b3d01055b4cc93d60fd40c470c22f9 diff --git a/examples/cis3-nft-sponsored-txs/tests/tests.rs b/examples/cis3-nft-sponsored-txs/tests/tests.rs index 4df1e78e..7e51244a 100644 --- a/examples/cis3-nft-sponsored-txs/tests/tests.rs +++ b/examples/cis3-nft-sponsored-txs/tests/tests.rs @@ -73,7 +73,7 @@ fn test_inside_signature_permit_update_operator() { // The `viewMessageHash` function uses the same input parameter `PermitParam` as // the `permit` function. The `PermitParam` type includes a `signature` and - // a `signer`. Becuase these two values (`signature` and `signer`) are not + // a `signer`. Because these two values (`signature` and `signer`) are not // read in the `viewMessageHash` function, any value can be used and we choose // to use `DUMMY_SIGNATURE` and `ALICE` in the test case below. let signature_map = BTreeMap::from([(0u8, CredentialSignatures { @@ -259,7 +259,7 @@ fn test_inside_signature_permit_transfer() { // The `viewMessageHash` function uses the same input parameter `PermitParam` as // the `permit` function. The `PermitParam` type includes a `signature` and - // a `signer`. Becuase these two values (`signature` and `signer`) are not + // a `signer`. Because these two values (`signature` and `signer`) are not // read in the `viewMessageHash` function, any value can be used and we choose // to use `DUMMY_SIGNATURE` and `ALICE` in the test case below. let signature_map = BTreeMap::from([(0u8, CredentialSignatures { @@ -706,7 +706,7 @@ fn test_nonce_of_query() { // The `viewMessageHash` function uses the same input parameter `PermitParam` as // the `permit` function. The `PermitParam` type includes a `signature` and - // a `signer`. Becuase these two values (`signature` and `signer`) are not + // a `signer`. Because these two values (`signature` and `signer`) are not // read in the `viewMessageHash` function, any value can be used and we choose // to use `DUMMY_SIGNATURE` and `ALICE` in the test case below. inner_signature_map.insert(0u8, concordium_std::Signature::Ed25519(DUMMY_SIGNATURE));