Skip to content

Commit ac3e6b8

Browse files
authored
Merge pull request #6188 from IntersectMBO/nbacquey/fix_k_discrepancy
Fix k discrepancy between byron and shelley genesis
2 parents e078e3d + 3cb0522 commit ac3e6b8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

cardano-testnet/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Next version
44

5+
* [Fix discrepancy in security parameter between Byron and Shelley genesis files](https://github.com/IntersectMBO/cardano-node/pull/6188)
6+
57
## 10.0.0
68

79
* Bump for node 10

cardano-testnet/src/Testnet/Start/Byron.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ data ByronGenesisOptions = ByronGenesisOptions
2929
byronDefaultGenesisOptions :: ByronGenesisOptions
3030
byronDefaultGenesisOptions = ByronGenesisOptions
3131
{ byronNumBftNodes = 3
32-
, byronSecurityParam = 10
32+
, byronSecurityParam = 5
3333
-- TODO: createByronGenesis should have a check that errors
3434
-- if totalBalance can be evenly split between numBftNodes
3535
-- with no remainder. Having a remainder results in rounding errors.

0 commit comments

Comments
 (0)