Skip to content

Commit

Permalink
file header updates & organized usings.
Browse files Browse the repository at this point in the history
  • Loading branch information
bonesoul committed Sep 29, 2014
1 parent 4006d1f commit 7a0b0af
Show file tree
Hide file tree
Showing 314 changed files with 320 additions and 38 deletions.
1 change: 1 addition & 0 deletions src/CoiniumServ/Accounts/Account.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Mining;

namespace CoiniumServ.Accounts
Expand Down
2 changes: 1 addition & 1 deletion src/CoiniumServ/Accounts/AccountManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using CoiniumServ.Payments;
using CoiniumServ.Persistance.Layers;
using CoiniumServ.Persistance.Layers.Hybrid;
using CoiniumServ.Persistance.Query;
using CoiniumServ.Pools;
using CoiniumServ.Server.Web.Models.Pool;
using Serilog;

namespace CoiniumServ.Accounts
Expand Down
2 changes: 1 addition & 1 deletion src/CoiniumServ/Accounts/IAccountManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using CoiniumServ.Payments;
using CoiniumServ.Persistance.Query;
using CoiniumServ.Server.Web.Models.Pool;

namespace CoiniumServ.Accounts
{
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/AlgorithmManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.Collections;
using System.Collections.Generic;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Blake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Fresh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Fugue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Groestl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/HashAlgorithmBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.Collections;
using System.Collections.Generic;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/IAlgorithmManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Server.Web.Service;
using CoiniumServ.Utils.Repository;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/IHashAlgorithm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.Collections.Generic;
using CoiniumServ.Pools;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Keccak.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Nist5.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Qubit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Scrypt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using CryptSharp.Utility;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/ScryptOg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using CryptSharp.Utility;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Sha1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using HashLib;

namespace CoiniumServ.Algorithms
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Sha256.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Security.Cryptography;

namespace CoiniumServ.Algorithms
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Shavite3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using HashLib;

namespace CoiniumServ.Algorithms
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/Skein.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using HashLib;

namespace CoiniumServ.Algorithms
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/X11.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/X13.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/X14.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/X15.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Algorithms/X17.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using HashLib;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Banning/BanConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using Serilog;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Banning/BanManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Banning/IBanConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Configuration;

namespace CoiniumServ.Banning
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Banning/IBanManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Net;

namespace CoiniumServ.Banning
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Blocks/BlockProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Diagnostics;
using System.Linq;
using System.Threading;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Address/Base58.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.Linq;
using System.Text;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;

namespace CoiniumServ.Coin.Address.Exceptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;

namespace CoiniumServ.Coin.Address.Exceptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;

namespace CoiniumServ.Coin.Address.Exceptions
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Coinbase/Serializers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.IO;
using System.Text;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Coinbase/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.IO;
using System.Linq;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Config/BlockExplorerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using Serilog;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Config/CoinConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using Serilog;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Config/CoinOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using JsonConfig;
using Serilog;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Config/IBlockExplorerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Configuration;

namespace CoiniumServ.Coin.Config
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Config/ICoinConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Configuration;
using Newtonsoft.Json;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Config/ICoinOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Configuration;

namespace CoiniumServ.Coin.Config
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Coin/Helpers/Hashrate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;

namespace CoiniumServ.Coin.Helpers
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Configuration/ConfigManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.Collections.Generic;
using System.Dynamic;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Configuration/IConfigManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System.Collections.Generic;
using CoiniumServ.Coin.Config;
using CoiniumServ.Daemon.Config;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Configuration/JsonConfigReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using System;
using System.IO;
using System.Text.RegularExpressions;
Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Container/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using CoiniumServ.Container.Registries;
using Nancy.TinyIoc;

Expand Down
1 change: 1 addition & 0 deletions src/CoiniumServ/Container/Context/ApplicationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
// license or white-label it as set out in licenses/commercial.txt.
//
#endregion

using Nancy.TinyIoc;

namespace CoiniumServ.Container.Context
Expand Down

0 comments on commit 7a0b0af

Please sign in to comment.