Skip to content

Commit

Permalink
Update x42 segwit activation (#301)
Browse files Browse the repository at this point in the history
The activation period passed on the x42 network. We made this change to our clients and did extensive testing and segwit is working when setting this to always active.
  • Loading branch information
DennisAMenace authored Mar 9, 2021
1 parent 3f0b92d commit 6a743e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Networks/Blockcore.Networks.x42/Networks/x42Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public x42Main()
{
[x42BIP9Deployments.ColdStaking] = new BIP9DeploymentsParameters("ColdStaking", 27, BIP9DeploymentsParameters.AlwaysActive, 999999999, BIP9DeploymentsParameters.DefaultMainnetThreshold),
[x42BIP9Deployments.CSV] = new BIP9DeploymentsParameters("CSV", 0, BIP9DeploymentsParameters.AlwaysActive, 999999999, BIP9DeploymentsParameters.DefaultMainnetThreshold),
[x42BIP9Deployments.Segwit] = new BIP9DeploymentsParameters("Segwit", 1, new DateTime(2020, 3, 1, 0, 0, 0, DateTimeKind.Utc), new DateTime(2021, 3, 1, 0, 0, 0, DateTimeKind.Utc), BIP9DeploymentsParameters.DefaultMainnetThreshold)
[x42BIP9Deployments.Segwit] = new BIP9DeploymentsParameters("Segwit", 1, BIP9DeploymentsParameters.AlwaysActive, 999999999, BIP9DeploymentsParameters.DefaultMainnetThreshold)
};

consensusFactory.Protocol = new ConsensusProtocol()
Expand Down

0 comments on commit 6a743e0

Please sign in to comment.