Skip to content

Commit

Permalink
Update CityMain.cs
Browse files Browse the repository at this point in the history
Extend the period for softfork activation of Segwit
  • Loading branch information
sondreb committed Apr 24, 2021
1 parent 046721b commit a8924a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/City/Networks/CityMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ public CityMain()
var bip9Deployments = new CityBIP9Deployments()
{
[CityBIP9Deployments.ColdStaking] = new BIP9DeploymentsParameters("ColdStaking", 2, new DateTime(2018, 12, 1, 0, 0, 0, DateTimeKind.Utc), new DateTime(2019, 12, 1, 0, 0, 0, DateTimeKind.Utc), BIP9DeploymentsParameters.DefaultMainnetThreshold),
[CityBIP9Deployments.CSV] = new BIP9DeploymentsParameters("CSV", 0, new DateTime(2021, 5, 18, 0, 0, 0, DateTimeKind.Utc), new DateTime(2021, 6, 1, 0, 0, 0, DateTimeKind.Utc), BIP9DeploymentsParameters.DefaultTestnetThreshold),
[CityBIP9Deployments.Segwit] = new BIP9DeploymentsParameters("Segwit", 1, new DateTime(2021, 5, 18, 0, 0, 0, DateTimeKind.Utc), new DateTime(2021, 6, 1, 0, 0, 0, DateTimeKind.Utc), BIP9DeploymentsParameters.DefaultTestnetThreshold),
[CityBIP9Deployments.CSV] = new BIP9DeploymentsParameters("CSV", 0, new DateTime(2021, 5, 18, 0, 0, 0, DateTimeKind.Utc), new DateTime(2021, 8, 1, 0, 0, 0, DateTimeKind.Utc), BIP9DeploymentsParameters.DefaultTestnetThreshold),
[CityBIP9Deployments.Segwit] = new BIP9DeploymentsParameters("Segwit", 1, new DateTime(2021, 5, 18, 0, 0, 0, DateTimeKind.Utc), new DateTime(2021, 8, 1, 0, 0, 0, DateTimeKind.Utc), BIP9DeploymentsParameters.DefaultTestnetThreshold),
};

var consensusOptions = new CityPosConsensusOptions(
Expand Down

0 comments on commit a8924a2

Please sign in to comment.