forked from dgarage/NBXplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServerTester.Environment.cs
86 lines (69 loc) · 2.76 KB
/
ServerTester.Environment.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using NBitcoin.Tests;
using System;
using System.Collections.Generic;
using System.Text;
namespace NBXplorer.Tests
{
public partial class ServerTester
{
private void SetEnvironment()
{
//CryptoCode = "LTC";
//nodeDownloadData = NodeDownloadData.Litecoin.v0_16_3;
//Network = NBitcoin.Altcoins.Litecoin.Instance.Regtest;
//CryptoCode = "BCH";
//nodeDownloadData = NodeDownloadData.BCash.v0_16_2;
//Network = NBitcoin.Altcoins.BCash.Instance.Regtest;
//Tests of DOGE are broken because it outpoint locking seems to work differently
//CryptoCode = "DOGE";
//nodeDownloadData = NodeDownloadData.Dogecoin.v1_10_0;
//Network = NBitcoin.Altcoins.Dogecoin.Instance.Regtest;
//RPCStringAmount = false;
//CryptoCode = "DASH";
//nodeDownloadData = NodeDownloadData.Dash.v0_12_2;
//Network = NBitcoin.Altcoins.Dash.Instance.Regtest;
//CryptoCode = "POLIS";
//nodeDownloadData = NodeDownloadData.Polis.v1_3_1;
//Network = NBitcoin.Altcoins.Polis.Instance.Regtest;
//CryptoCode = "BTG";
//nodeDownloadData = NodeDownloadData.BGold.v0_15_0;
//Network = NBitcoin.Altcoins.BGold.Instance.Regtest;
//CryptoCode = "MONA";
//nodeDownloadData = NodeDownloadData.Monacoin.v0_15_1;
//Network = NBitcoin.Altcoins.Monacoin.Instance.Regtest;
//CryptoCode = "FTC";
//nodeDownloadData = NodeDownloadData.Feathercoin.v0_16_0;
//Network = NBitcoin.Altcoins.Feathercoin.Instance.Regtest;
//CryptoCode = "UFO";
//nodeDownloadData = NodeDownloadData.Ufo.v0_16_0;
//Network = NBitcoin.Altcoins.Ufo.Instance.Regtest;
//CryptoCode = "VIA";
//nodeDownloadData = NodeDownloadData.Viacoin.v0_15_1;
//Network = NBitcoin.Altcoins.Viacoin.Instance.Regtest;
//CryptoCode = "GRS";
//nodeDownloadData = NodeDownloadData.Groestlcoin.v2_16_0;
//Network = NBitcoin.Altcoins.Groestlcoin.Instance.Regtest;
//CryptoCode = "BTX";
//nodeDownloadData = NodeDownloadData.Bitcore.v0_15_2;
//Network = NBitcoin.Altcoins.Bitcore.Instance.Regtest;
//CryptoCode = "XMCC";
//nodeDownloadData = NodeDownloadData.Monoeci.v0_12_2_3;
//Network = NBitcoin.Altcoins.Monoeci.Instance.Regtest;
//RPCSupportSegwit = false;
//CryptoCode = "GBX";
//nodeDownloadData = NodeDownloadData.Gobyte.v0_12_2_4;
//Network = NBitcoin.Altcoins.Gobyte.Instance.Regtest;
//RPCSupportSegwit = false;
//CryptoCode = "COLX";
//nodeDownloadData = NodeDownloadData.Colossus.v1_1_1;
//Network = NBitcoin.Altcoins.Colossus.Instance.Regtest;
//RPCSupportSegwit = false;
//CryptoCode = "VTC";
//nodeDownloadData = NodeDownloadData.Vertcoin.v0_14_0;
//Network = NBitcoin.Altcoins.Vertcoin.Instance.Regtest;
CryptoCode = "BTC";
nodeDownloadData = NodeDownloadData.Bitcoin.v0_18_0;
Network = NBitcoin.Network.RegTest;
}
}
}