You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GetDictionaryItem() method first parameter is dictionaryItem and it should be dictionaryKey.
XML Documentation says:
/// <summary>
/// Lookup a dictionary item from its dictionary item key.
/// </summary>
/// <param name="dictionaryItem">The dictionary item key to retrieve.</param>
/// <param name="stateRootHash">Hash of the state root.</param>
and it should be:
/// <summary>
/// Lookup a dictionary item from its dictionary key.
/// </summary>
/// <param name="dictionaryeyK">The dictionary key to retrieve.</param>
/// <param name="stateRootHash">Hash of the state root.</param>