Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ChainSafe.Gaming.Unity/UnityLogWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void Log(string message)
}

/// <summary>
/// Logs the message to Unity's console as a Debug LogError message.
/// Logs the message to Unity's console as a Debug.LogError message.
/// </summary>
/// <param name="message">message to show.</param>
public void LogError(string message)
Expand Down
4 changes: 2 additions & 2 deletions src/ChainSafe.Gaming/Web3/Core/Chains/IChainConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace ChainSafe.Gaming.Web3
/// <summary>
/// Configuration object containing chain settings.
/// </summary>
public interface IChainConfig // TODO: double check these xml docs pls
public interface IChainConfig
{
/// <summary>
/// The id of the chain to be used. Equals '1' for Ethereum Mainnet.
Expand Down Expand Up @@ -31,7 +31,7 @@ public interface IChainConfig // TODO: double check these xml docs pls
public string Rpc { get; }

/// <summary>
/// TODO.
/// The WebSocket URI for the chain, used for real-time blockchain event subscriptions.
/// </summary>
public string Ws { get; }

Expand Down