File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -508,16 +508,16 @@ public async Task<RpcResponse<GetEraSummaryResult>> GetEraSummary(int blockHeigh
508
508
}
509
509
510
510
/// <summary>
511
- /// Lookup a dictionary item from its dictionary item key.
511
+ /// Lookup a dictionary item from its dictionary key.
512
512
/// </summary>
513
- /// <param name="dictionaryItem ">The dictionary item key to retrieve.</param>
513
+ /// <param name="dictionaryKey ">The dictionary key to retrieve.</param>
514
514
/// <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 )
516
516
{
517
517
if ( stateRootHash == null )
518
518
stateRootHash = await GetStateRootHash ( ) ;
519
519
520
- var method = new GetDictionaryItem ( dictionaryItem , stateRootHash ) ;
520
+ var method = new GetDictionaryItem ( dictionaryKey , stateRootHash ) ;
521
521
return await SendRpcRequestAsync < GetDictionaryItemResult > ( method ) ;
522
522
}
523
523
You can’t perform that action at this time.
0 commit comments