Skip to content

Commit

Permalink
Merge pull request #1169 from input-output-hk/increase-maximum-number…
Browse files Browse the repository at this point in the history
…-of-parties

Increase maximum number of parties
  • Loading branch information
ch1bo authored Nov 20, 2023
2 parents fcae9ca + 922a148 commit 4cc76a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ changes.

## [0.14.0] - UNRELEASED

- Increase maximum number of parties to 5

- **BREAKING** Sign the head identifier as part of snapshot signature
and verify it on-chain

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 @@ -48,7 +48,7 @@ maxMainnetLovelace = 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 = 4
maximumNumberOfParties = 5

-- | Contains the head's parameters as established in the initial transaction.
data HeadParameters = HeadParameters
Expand Down

0 comments on commit 4cc76a4

Please sign in to comment.