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); }