From c3725a230f444435f7f20c66c89c2451046c685c Mon Sep 17 00:00:00 2001 From: David Hernando Date: Wed, 6 Sep 2023 17:12:39 +0200 Subject: [PATCH] Documentation update(fixes #34) Signed-off-by: David Hernando --- Casper.Network.SDK/NetCasperClient.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Casper.Network.SDK/NetCasperClient.cs b/Casper.Network.SDK/NetCasperClient.cs index 650bdaf..507b214 100644 --- a/Casper.Network.SDK/NetCasperClient.cs +++ b/Casper.Network.SDK/NetCasperClient.cs @@ -508,16 +508,16 @@ public async Task> GetEraSummary(int blockHeigh } /// - /// Lookup a dictionary item from its dictionary item key. + /// Lookup a dictionary item from its dictionary key. /// - /// The dictionary item key to retrieve. + /// The dictionary key to retrieve. /// Hash of the state root. - public async Task> GetDictionaryItem(string dictionaryItem, string stateRootHash = null) + public async Task> GetDictionaryItem(string dictionaryKey, string stateRootHash = null) { if(stateRootHash == null) stateRootHash = await GetStateRootHash(); - var method = new GetDictionaryItem(dictionaryItem, stateRootHash); + var method = new GetDictionaryItem(dictionaryKey, stateRootHash); return await SendRpcRequestAsync(method); }