Skip to content

Commit

Permalink
My stuff...
Browse files Browse the repository at this point in the history
  • Loading branch information
vkynchev committed Aug 15, 2017
1 parent 400ee74 commit 3bce7d5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/CoiniumServ/Mining/MetaConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public MetaConfig(dynamic config)
{
// load the config data.
MOTD = string.IsNullOrEmpty(config.motd)
? "Welcome to CoiniumServ pool, enjoy your stay! - http://www.coinumserv.com"
? "Enjoy your stay!"
: config.motd;

TxMessage = string.IsNullOrEmpty(config.txMessage) ? "http://www.coiniumserv.com/" : config.txMessage;
Expand Down
28 changes: 15 additions & 13 deletions src/CoiniumServ/Utils/ConsoleWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ class ConsoleWindow
public static void PrintBanner()
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(@"-------------------------------------------------------------------");
Console.WriteLine(@" .__ .__ ");
Console.WriteLine(@" ____ ____ |__| ____ |__|__ __ _____ ______ ______________ __");
Console.WriteLine(@"_/ ___\/ _ \| |/ \| | | \/ \ / ___// __ \_ __ \ \/ /");
Console.WriteLine(@"\ \__( <_> ) | | \ | | / Y Y \\___ \\ ___/| | \/\ / ");
Console.WriteLine(@" \___ >____/|__|___| /__|____/|__|_| /____ >\___ >__| \_/ ");
Console.WriteLine(@" \/ \/ \/ \/ \/ ");
Console.WriteLine(@"-------------------------------------------------------------------");
Console.WriteLine();
}

Expand All @@ -56,19 +58,19 @@ public static void PrintBanner()
/// </summary>
public static void PrintLicense()
{
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("Copyright (C) 2013 - 2017, Coinium project - https://github.com/CoiniumServ/CoiniumServ");
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.WriteLine("CoiniumServ comes with ABSOLUTELY NO WARRANTY.");
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("You can contribute the development of the project by donating;");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(" BTC : 18qqrtR4xHujLKf9oqiCsjmwmH5vGpch4D");
Console.WriteLine(" LTC : LMXfRb3w8cMUBfqZb6RUkFTPaT6vbRozPa");
Console.WriteLine(" DOGE: DM8FW8REMHj3P4xtcMWDn33ccjikCWJnQr");
Console.WriteLine(" RDD : Rb9kcLs96VDHTmiXVjcWC2RBsfCJ73UQyr");
//Console.ForegroundColor = ConsoleColor.Magenta;
//Console.WriteLine("Copyright (C) 2013 - 2017, Coinium project - https://github.com/CoiniumServ/CoiniumServ");
//Console.WriteLine();
//Console.ForegroundColor = ConsoleColor.DarkYellow;
//Console.WriteLine("CoiniumServ comes with ABSOLUTELY NO WARRANTY.");
//Console.WriteLine();
//Console.ForegroundColor = ConsoleColor.Green;
//Console.WriteLine("You can contribute the development of the project by donating;");
//Console.ForegroundColor = ConsoleColor.Yellow;
//Console.WriteLine(" BTC : 18qqrtR4xHujLKf9oqiCsjmwmH5vGpch4D");
//Console.WriteLine(" LTC : LMXfRb3w8cMUBfqZb6RUkFTPaT6vbRozPa");
//Console.WriteLine(" DOGE: DM8FW8REMHj3P4xtcMWDn33ccjikCWJnQr");
//Console.WriteLine(" RDD : Rb9kcLs96VDHTmiXVjcWC2RBsfCJ73UQyr");
Console.WriteLine();
Console.ResetColor();
}
Expand Down

0 comments on commit 3bce7d5

Please sign in to comment.