Skip to content

Commit ec919ce

Browse files
authored
Bump Groestlcoin Core to 29.0 (#1267)
1 parent 04e4737 commit ec919ce

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

NBitcoin.TestFramework/WellknownNodeDownloadData.cs

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1586,7 +1586,6 @@ public class GroestlcoinNodeDownloadData
15861586
},
15871587
UseSectionInConfigFile = true,
15881588
CreateWallet = true
1589-
15901589
};
15911590

15921591
public NodeDownloadData v27_0 = new NodeDownloadData()
@@ -1615,7 +1614,6 @@ public class GroestlcoinNodeDownloadData
16151614
},
16161615
UseSectionInConfigFile = true,
16171616
CreateWallet = true
1618-
16191617
};
16201618

16211619
public NodeDownloadData v28_0 = new NodeDownloadData()
@@ -1645,6 +1643,34 @@ public class GroestlcoinNodeDownloadData
16451643
UseSectionInConfigFile = true,
16461644
CreateWallet = true
16471645
};
1646+
1647+
public NodeDownloadData v29_0 = new NodeDownloadData()
1648+
{
1649+
Version = "29.0",
1650+
Windows = new NodeOSDownloadData()
1651+
{
1652+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-win64.zip",
1653+
Archive = "groestlcoin-{0}-win64.zip",
1654+
Executable = "groestlcoin-{0}/bin/groestlcoind.exe",
1655+
Hash = "590691791c552c7cc09b0242819f2d63a5b8b218c992256fc2da8dc4f95599be"
1656+
},
1657+
Linux = new NodeOSDownloadData()
1658+
{
1659+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1660+
Archive = "groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1661+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1662+
Hash = "e0b3e3d96caf908060779c0d9964c777ccc4b7364af54404ff1768e018e56768"
1663+
},
1664+
Mac = new NodeOSDownloadData()
1665+
{
1666+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1667+
Archive = "groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1668+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1669+
Hash = "d4389fce59bd751a38c22abe8d207ad8e16e754330540fbdafad92c8821bac1b"
1670+
},
1671+
UseSectionInConfigFile = true,
1672+
CreateWallet = true
1673+
};
16481674
}
16491675

16501676
public class ZclassicNodeDownloadData

NBitcoin.Tests/NodeBuilderEx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static NodeBuilder Create([CallerMemberName] string caller = null)
4040

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

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

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

0 commit comments

Comments
 (0)