From 9ad58d056f68c196a00f293645c6e9e6f32e4f78 Mon Sep 17 00:00:00 2001 From: phessophissy Date: Fri, 23 Jan 2026 21:08:22 +0100 Subject: [PATCH] docs: fix XML documentation and remove TODO comments --- src/ChainSafe.Gaming.Unity/UnityLogWriter.cs | 2 +- src/ChainSafe.Gaming/Web3/Core/Chains/IChainConfig.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }