Skip to content

Commit

Permalink
Use Groestlcoin Core 25.0 for tests (#1177)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p authored Jun 26, 2023
1 parent ae0eb0d commit a1d0dfb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions NBitcoin.TestFramework/WellknownNodeDownloadData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1442,6 +1442,33 @@ public class GroestlcoinNodeDownloadData
},
UseSectionInConfigFile = true
};

public NodeDownloadData v25_0 = new NodeDownloadData()
{
Version = "25.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 = "01845651fa52c2d6aa41621c280024e2909ab2218e144328e94de952bc70fea0"
},
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 = "bcca36b5a2f1e83a4fd9888bc0016d3f46f9ef01238dc23a8e03f2f4ac3b9707"
},
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 = "f9ca13def63d0722100417b880cd83b178f0770c2030838482bd5ef420547a11"
},
UseSectionInConfigFile = 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.v24_0_1, Altcoins.AltNetworkSets.Groestlcoin.Regtest, caller);
//var builder = NodeBuilder.Create(NodeDownloadData.Groestlcoin.v25_0, Altcoins.AltNetworkSets.Groestlcoin.Regtest, caller);

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

Expand Down

0 comments on commit a1d0dfb

Please sign in to comment.