Skip to content
Merged
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
30 changes: 28 additions & 2 deletions NBitcoin.TestFramework/WellknownNodeDownloadData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1586,7 +1586,6 @@ public class GroestlcoinNodeDownloadData
},
UseSectionInConfigFile = true,
CreateWallet = true

};

public NodeDownloadData v27_0 = new NodeDownloadData()
Expand Down Expand Up @@ -1615,7 +1614,6 @@ public class GroestlcoinNodeDownloadData
},
UseSectionInConfigFile = true,
CreateWallet = true

};

public NodeDownloadData v28_0 = new NodeDownloadData()
Expand Down Expand Up @@ -1645,6 +1643,34 @@ public class GroestlcoinNodeDownloadData
UseSectionInConfigFile = true,
CreateWallet = true
};

public NodeDownloadData v29_0 = new NodeDownloadData()
{
Version = "29.0",
Windows = new NodeOSDownloadData()
{
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-win64.zip",
Archive = "groestlcoin-{0}-win64.zip",
Executable = "groestlcoin-{0}/bin/groestlcoind.exe",
Hash = "590691791c552c7cc09b0242819f2d63a5b8b218c992256fc2da8dc4f95599be"
},
Linux = new NodeOSDownloadData()
{
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
Archive = "groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
Executable = "groestlcoin-{0}/bin/groestlcoind",
Hash = "e0b3e3d96caf908060779c0d9964c777ccc4b7364af54404ff1768e018e56768"
},
Mac = new NodeOSDownloadData()
{
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
Archive = "groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
Executable = "groestlcoin-{0}/bin/groestlcoind",
Hash = "d4389fce59bd751a38c22abe8d207ad8e16e754330540fbdafad92c8821bac1b"
},
UseSectionInConfigFile = true,
CreateWallet = true
};
}

public class ZclassicNodeDownloadData
Expand Down
2 changes: 1 addition & 1 deletion NBitcoin.Tests/NodeBuilderEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static NodeBuilder Create([CallerMemberName] string caller = null)

//var builder = NodeBuilder.Create(NodeDownloadData.Ufo.v0_16_0, Altcoins.AltNetworkSets.Ufo.Regtest, caller);

//var builder = NodeBuilder.Create(NodeDownloadData.Groestlcoin.v28_0, Altcoins.AltNetworkSets.Groestlcoin.Regtest, caller);
//var builder = NodeBuilder.Create(NodeDownloadData.Groestlcoin.v29_0, Altcoins.AltNetworkSets.Groestlcoin.Regtest, caller);

//var builder = NodeBuilder.Create(NodeDownloadData.Mogwai.v0_12_2, Altcoins.AltNetworkSets.Mogwai.Regtest, caller);

Expand Down
Loading