Skip to content

Commit

Permalink
Update changelog and set maximumNumberOfParties to 9
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1bo committed Oct 4, 2024
1 parent 5d585d4 commit 9d5ca8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ changes.

- Tested with `cardano-node 9.2.0` and `cardano-cli 9.4.1.0`.

- Write the vCommit validator in Aiken.
This makes the Abort and CollectCom transactions fit double the participants.
But, due to execution memory limits, the maximum number of parties increased to 7.
- **BREAKING** Rewrite of the commit script in aiken:
- This makes `abort` and `collectCom` transactions more efficient and results
in a new maximum number of head participants being `9`.
- Changes script hashes in `hydra-plutus`

## [0.19.0] - 2024-09-13

Expand Down
2 changes: 1 addition & 1 deletion hydra-node/src/Hydra/Chain.hs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ maxMainnetLovelace = Coin 100_000_000
-- The value is obtained from calculating the costs of running the scripts
-- and on-chan validators (see 'computeCollectComCost' 'computeAbortCost')
maximumNumberOfParties :: Int
maximumNumberOfParties = 7
maximumNumberOfParties = 9

-- | Data type used to post transactions on chain. It holds everything to
-- construct corresponding Head protocol transactions.
Expand Down

0 comments on commit 9d5ca8d

Please sign in to comment.