Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update with TDCoin support #957

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NBitcoin.Altcoins/AltcoinNetworkSets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class AltNetworkSets
public static Dash Dash { get; } = Dash.Instance;
public static Verge Verge { get; } = Verge.Instance;
public static Terracoin Terracoin { get; } = Terracoin.Instance;
public static TDCoin TDCoin { get; } = Terracoin.Instance;
public static Mogwai Mogwai { get; } = Mogwai.Instance;
public static Dogecoin Dogecoin { get; } = Dogecoin.Instance;
public static Dystem Dystem { get; } = Dystem.Instance;
Expand Down Expand Up @@ -57,6 +58,7 @@ public static IEnumerable<INetworkSet> GetAll()
yield return Dash;
//yield return Verge;
yield return Terracoin;
yield return TDCoin;
yield return Mogwai;
yield return Ufo;
yield return Groestlcoin;
Expand Down
Loading