Skip to content

Commit

Permalink
Update seed node information
Browse files Browse the repository at this point in the history
- Add a new checkpoint that is higher.
- Update the seed node information.
  • Loading branch information
sondreb committed Jul 5, 2021
1 parent f229f50 commit 8d6322b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl -Ls https://github.com/CityChainFoundation/city-chain/releases/download/v1.0.32/City.Chain-1.0.32-linux-x64.tar.gz \
RUN curl -Ls https://github.com/CityChainFoundation/city-chain/releases/download/v1.0.33/City.Chain-1.0.33-linux-x64.tar.gz \
| tar -xvz -C .

COPY city.conf.docker /root/.citychain/city/CityMain/city.conf
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "citychain",
"version": "1.0.32",
"version": "1.0.33",
"license": "MIT",
"author": {
"name": "City Chain Foundation",
Expand Down
10 changes: 6 additions & 4 deletions src/City/Networks/CityMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ public CityMain()
{ 800000, new CheckpointInfo(new uint256("0xaf94ebd59507829e82d2e98e75f8777224bf54e2f4ad76ff7bdc2ebebc634cb9"), new uint256("0xbe19a177b90653ee3a654e7fd307e93410db3478dbc28225e24aea9d2087d04b")) },
{ 1125570, new CheckpointInfo(new uint256("0x1295cd37612f19ad8847531f84489f25fa1612a0cb91e95bff44b566a0de2cfa"), new uint256("0xa62070bd16f609f33b724e2de7bd555fcef28161a6146e6270dfcaf784b21d61")) },
{ 1196280, new CheckpointInfo(new uint256("0xa42ba7735f2bf202f218d932008c039f4f97f90710c0a77c27c15b66c1ed48cd"), new uint256("0x3a7ccae05cc65f9b3e325a606ef1fe690820e2fbe0b1bbdadb2a57be97c8cf18")) },
{ 1250000, new CheckpointInfo(new uint256("0xfcbfa827fce703d50f72b5b6f0ee1e5a5d46c7a469bc972c4d4839137998e5a5"), new uint256("0xaa163ed85712405b4623683259c947fa4fc2fe56eb9ee3c7eded2b5492b58dd1")) },
};

this.Bech32Encoders = new Bech32Encoder[2];
Expand All @@ -167,17 +168,18 @@ public CityMain()
{
new DNSSeedData("city-chain.org", "seed.city-chain.org"),
new DNSSeedData("city-coin.org", "seed.city-coin.org"),
new DNSSeedData("citychain.foundation", "seed.citychain.foundation"),
new DNSSeedData("liberstad.com", "seed.liberstad.com")
//new DNSSeedData("citychain.foundation", "seed.citychain.foundation"),
//new DNSSeedData("liberstad.com", "seed.liberstad.com")
};

this.SeedNodes = new List<NetworkAddress>
{
new NetworkAddress(IPAddress.Parse("23.97.234.230"), this.DefaultPort),
new NetworkAddress(IPAddress.Parse("13.73.143.193"), this.DefaultPort),
new NetworkAddress(IPAddress.Parse("94.177.215.201"), this.DefaultPort),
// new NetworkAddress(IPAddress.Parse("94.177.215.201"), this.DefaultPort),
new NetworkAddress(IPAddress.Parse("89.36.213.152"), this.DefaultPort),
new NetworkAddress(IPAddress.Parse("96.126.122.213"), this.DefaultPort),
new NetworkAddress(IPAddress.Parse("89.10.229.203"), this.DefaultPort),
// new NetworkAddress(IPAddress.Parse("96.126.122.213"), this.DefaultPort),
};

this.StandardScriptsRegistry = new CityStandardScriptsRegistry();
Expand Down
4 changes: 2 additions & 2 deletions src/Stratis.Bitcoin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.0.32.0")]
[assembly: AssemblyFileVersion("3.0.32.0")]
[assembly: AssemblyVersion("3.0.33.0")]
[assembly: AssemblyFileVersion("3.0.33.0")]
[assembly: InternalsVisibleTo("Stratis.Bitcoin.Tests")]

0 comments on commit 8d6322b

Please sign in to comment.