Skip to content

Commit

Permalink
Fix stratis consensus options to be similar to stratis code base
Browse files Browse the repository at this point in the history
  • Loading branch information
dangershony committed Jul 20, 2020
1 parent caf9ef3 commit 6c28848
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ public StratisMain()
var consensusOptions = new PosConsensusOptions
{
MaxBlockBaseSize = 1_000_000,
MaxBlockSerializedSize = 1_000_000,
MaxStandardVersion = 2,
MaxStandardTxWeight = 100_000,
MaxBlockSigopsCost = 20_000,
MaxStandardTxSigopsCost = 20_000 / 5,
WitnessScaleFactor = 4
WitnessScaleFactor = 1,
};

var buriedDeployments = new BuriedDeploymentsArray
Expand Down

0 comments on commit 6c28848

Please sign in to comment.