Skip to content

Commit c3725a2

Browse files
Documentation update(fixes #34)
Signed-off-by: David Hernando <david.hernando@make.services>
1 parent 566ff13 commit c3725a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Casper.Network.SDK/NetCasperClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -508,16 +508,16 @@ public async Task<RpcResponse<GetEraSummaryResult>> GetEraSummary(int blockHeigh
508508
}
509509

510510
/// <summary>
511-
/// Lookup a dictionary item from its dictionary item key.
511+
/// Lookup a dictionary item from its dictionary key.
512512
/// </summary>
513-
/// <param name="dictionaryItem">The dictionary item key to retrieve.</param>
513+
/// <param name="dictionaryKey">The dictionary key to retrieve.</param>
514514
/// <param name="stateRootHash">Hash of the state root.</param>
515-
public async Task<RpcResponse<GetDictionaryItemResult>> GetDictionaryItem(string dictionaryItem, string stateRootHash = null)
515+
public async Task<RpcResponse<GetDictionaryItemResult>> GetDictionaryItem(string dictionaryKey, string stateRootHash = null)
516516
{
517517
if(stateRootHash == null)
518518
stateRootHash = await GetStateRootHash();
519519

520-
var method = new GetDictionaryItem(dictionaryItem, stateRootHash);
520+
var method = new GetDictionaryItem(dictionaryKey, stateRootHash);
521521
return await SendRpcRequestAsync<GetDictionaryItemResult>(method);
522522
}
523523

0 commit comments

Comments
 (0)