Skip to content

Commit 423279c

Browse files
authored
Bump GRS to 28.0 (#1193)
1 parent b9ff2d5 commit 423279c

File tree

2 files changed

+97
-6
lines changed

2 files changed

+97
-6
lines changed

NBitcoin.TestFramework/WellknownNodeDownloadData.cs

Lines changed: 96 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1444,7 +1444,8 @@ public class GroestlcoinNodeDownloadData
14441444
Executable = "groestlcoin-{0}/bin/groestlcoind",
14451445
Hash = "d3b36a30f2a9a624087414820237df0ec5289a52fc24c3a1a38f67be7698073c"
14461446
},
1447-
UseSectionInConfigFile = true
1447+
UseSectionInConfigFile = true,
1448+
CreateWallet = true
14481449
};
14491450

14501451
public NodeDownloadData v22_0 = new NodeDownloadData()
@@ -1471,7 +1472,8 @@ public class GroestlcoinNodeDownloadData
14711472
Executable = "groestlcoin-{0}/bin/groestlcoind",
14721473
Hash = "bdcdfac563eb54bc3de185c9b92200a36ccbd10d018aebd665e0bbe65a4480db"
14731474
},
1474-
UseSectionInConfigFile = true
1475+
UseSectionInConfigFile = true,
1476+
CreateWallet = true
14751477
};
14761478

14771479
public NodeDownloadData v23_0 = new NodeDownloadData()
@@ -1498,7 +1500,8 @@ public class GroestlcoinNodeDownloadData
14981500
Executable = "groestlcoin-{0}/bin/groestlcoind",
14991501
Hash = "ff80c843a29c515e052972019915fa302584b0c045ca69ee3a1572013743d385"
15001502
},
1501-
UseSectionInConfigFile = true
1503+
UseSectionInConfigFile = true,
1504+
CreateWallet = true
15021505
};
15031506

15041507
public NodeDownloadData v24_0_1 = new NodeDownloadData()
@@ -1525,7 +1528,8 @@ public class GroestlcoinNodeDownloadData
15251528
Executable = "groestlcoin-{0}/bin/groestlcoind",
15261529
Hash = "8a99765cd01686b81480dc29ee70aa5619d429402685f164e2a4b0b4d592ac10"
15271530
},
1528-
UseSectionInConfigFile = true
1531+
UseSectionInConfigFile = true,
1532+
CreateWallet = true
15291533
};
15301534

15311535
public NodeDownloadData v25_0 = new NodeDownloadData()
@@ -1552,7 +1556,94 @@ public class GroestlcoinNodeDownloadData
15521556
Executable = "groestlcoin-{0}/bin/groestlcoind",
15531557
Hash = "f9ca13def63d0722100417b880cd83b178f0770c2030838482bd5ef420547a11"
15541558
},
1555-
UseSectionInConfigFile = true
1559+
UseSectionInConfigFile = true,
1560+
CreateWallet = true
1561+
};
1562+
1563+
public NodeDownloadData v26_0 = new NodeDownloadData()
1564+
{
1565+
Version = "26.0",
1566+
Windows = new NodeOSDownloadData()
1567+
{
1568+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-win64.zip",
1569+
Archive = "groestlcoin-{0}-win64.zip",
1570+
Executable = "groestlcoin-{0}/bin/groestlcoind.exe",
1571+
Hash = "12684c034d19dff620bfe374977bea031e6428e6a12e29a77587fe9f52abefee"
1572+
},
1573+
Linux = new NodeOSDownloadData()
1574+
{
1575+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1576+
Archive = "groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1577+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1578+
Hash = "0e24be6c094c1d7ae75d9d99b9bfb067e75200ed43fd8fde94d307a6bbd8bd72"
1579+
},
1580+
Mac = new NodeOSDownloadData()
1581+
{
1582+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1583+
Archive = "groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1584+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1585+
Hash = "88c6a2889689e3822a5cf294cb154a11f6e9cf86ad6a187cf7e0babae743d12a"
1586+
},
1587+
UseSectionInConfigFile = true,
1588+
CreateWallet = true
1589+
1590+
};
1591+
1592+
public NodeDownloadData v27_0 = new NodeDownloadData()
1593+
{
1594+
Version = "27.0",
1595+
Windows = new NodeOSDownloadData()
1596+
{
1597+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-win64.zip",
1598+
Archive = "groestlcoin-{0}-win64.zip",
1599+
Executable = "groestlcoin-{0}/bin/groestlcoind.exe",
1600+
Hash = "f40e19f55408458ccd42c9cd605a7db5fbc894ba66c486f9ca252d45f5c98347"
1601+
},
1602+
Linux = new NodeOSDownloadData()
1603+
{
1604+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1605+
Archive = "groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1606+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1607+
Hash = "5189f036913e2033b5fe95ba8f3fc027e9c5bd286d2150e9133cd4a2fd69a7a0"
1608+
},
1609+
Mac = new NodeOSDownloadData()
1610+
{
1611+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1612+
Archive = "groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1613+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1614+
Hash = "60ee077c9b05869a935c1db9022d6ad16e3b84c2a535a41398bb6f87679dc4a8"
1615+
},
1616+
UseSectionInConfigFile = true,
1617+
CreateWallet = true
1618+
1619+
};
1620+
1621+
public NodeDownloadData v28_0 = new NodeDownloadData()
1622+
{
1623+
Version = "28.0",
1624+
Windows = new NodeOSDownloadData()
1625+
{
1626+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-win64.zip",
1627+
Archive = "groestlcoin-{0}-win64.zip",
1628+
Executable = "groestlcoin-{0}/bin/groestlcoind.exe",
1629+
Hash = "7a81e52c74612f77817f8ac01e3b249366520640ee2652bfb0a1c5f3af10f13b"
1630+
},
1631+
Linux = new NodeOSDownloadData()
1632+
{
1633+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1634+
Archive = "groestlcoin-{0}-x86_64-linux-gnu.tar.gz",
1635+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1636+
Hash = "540d5d7c6bb0449763567ea7c2559e124d61b82a6b2798701d5759458d9c21d7"
1637+
},
1638+
Mac = new NodeOSDownloadData()
1639+
{
1640+
DownloadLink = "https://github.com/Groestlcoin/groestlcoin/releases/download/v{0}/groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1641+
Archive = "groestlcoin-{0}-x86_64-apple-darwin.tar.gz",
1642+
Executable = "groestlcoin-{0}/bin/groestlcoind",
1643+
Hash = "7a4bbe989c3165bb7bce57c12638f973b637ced319194ea20924804f718091ce"
1644+
},
1645+
UseSectionInConfigFile = true,
1646+
CreateWallet = true
15561647
};
15571648
}
15581649

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.v25_0, Altcoins.AltNetworkSets.Groestlcoin.Regtest, caller);
43+
//var builder = NodeBuilder.Create(NodeDownloadData.Groestlcoin.v28_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)