diff --git a/src/ChainSafe.Gaming.Unity/UnityLogWriter.cs b/src/ChainSafe.Gaming.Unity/UnityLogWriter.cs index c682fff55..63e9158cc 100644 --- a/src/ChainSafe.Gaming.Unity/UnityLogWriter.cs +++ b/src/ChainSafe.Gaming.Unity/UnityLogWriter.cs @@ -27,7 +27,7 @@ public void Log(string message) } /// - /// Logs the message to Unity's console as a Debug LogError message. + /// Logs the message to Unity's console as a Debug.LogError message. /// /// message to show. public void LogError(string message) diff --git a/src/ChainSafe.Gaming/Web3/Core/Chains/IChainConfig.cs b/src/ChainSafe.Gaming/Web3/Core/Chains/IChainConfig.cs index 82edf0631..448166935 100644 --- a/src/ChainSafe.Gaming/Web3/Core/Chains/IChainConfig.cs +++ b/src/ChainSafe.Gaming/Web3/Core/Chains/IChainConfig.cs @@ -3,7 +3,7 @@ namespace ChainSafe.Gaming.Web3 /// /// Configuration object containing chain settings. /// - public interface IChainConfig // TODO: double check these xml docs pls + public interface IChainConfig { /// /// The id of the chain to be used. Equals '1' for Ethereum Mainnet. @@ -31,7 +31,7 @@ public interface IChainConfig // TODO: double check these xml docs pls public string Rpc { get; } /// - /// TODO. + /// The WebSocket URI for the chain, used for real-time blockchain event subscriptions. /// public string Ws { get; }