Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump hardcoded deposit of script outputs to 2.2 #1175

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ changes.

## [0.14.0] - UNRELEASED

- Increase maximum number of parties to 5
- Increase maximum number of parties to 5.

- **BREAKING** Sign the head identifier as part of snapshot signature
and verify it on-chain
Expand Down Expand Up @@ -40,7 +40,8 @@ changes.

- **BREAKING** Changes to Hydra scripts:
- Switch to using inline datums instead of (optionally) published datums in
transactions.
transactions. This also includes a bump in the hard-coded deposit of script
outputs to 2.2₳.
- Upgrading our toolchain to GHC 9.6

- **BREAKING** Changes to persisted state:
Expand Down
2 changes: 1 addition & 1 deletion hydra-node/src/Hydra/Chain/Direct/Tx.hs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ hydraHeadV1AssetName = AssetName (fromBuiltin hydraHeadV1)

-- FIXME: sould not be hardcoded
headValue :: Value
headValue = lovelaceToValue (Lovelace 2_000_000)
headValue = lovelaceToValue (Lovelace 2_200_000)

-- * Create Hydra Head transactions

Expand Down
Loading