Skip to content

Commit 6c28848

Browse files
committed
Fix stratis consensus options to be similar to stratis code base
1 parent caf9ef3 commit 6c28848

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Networks/Stratis/Blockcore.Networks.Stratis/StratisMain.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,12 @@ public StratisMain()
7777
var consensusOptions = new PosConsensusOptions
7878
{
7979
MaxBlockBaseSize = 1_000_000,
80+
MaxBlockSerializedSize = 1_000_000,
8081
MaxStandardVersion = 2,
8182
MaxStandardTxWeight = 100_000,
8283
MaxBlockSigopsCost = 20_000,
8384
MaxStandardTxSigopsCost = 20_000 / 5,
84-
WitnessScaleFactor = 4
85+
WitnessScaleFactor = 1,
8586
};
8687

8788
var buriedDeployments = new BuriedDeploymentsArray

0 commit comments

Comments
 (0)