1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-22 13:52:54 +00:00

Fixed some resharper warnings

This commit is contained in:
JKorf
2018-08-16 10:40:35 +02:00
parent bb227b4b12
commit b5833e5230
13 changed files with 33 additions and 32 deletions
@@ -57,9 +57,10 @@ namespace CryptoExchange.Net.Authentication
}
/// <summary>
/// Create Api credentials providing a private key for authenication
/// Create Api credentials providing a api key and secret for authenciation
/// </summary>
/// <param name="privateKey">The private key used for signing</param>
/// <param name="key">The api key used for identification</param>
/// <param name="secret">The api secret used for signing</param>
public ApiCredentials(string key, string secret)
{
if (string.IsNullOrEmpty(key) || string.IsNullOrEmpty(secret))