diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca9bf18b10..613a7cea586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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: diff --git a/hydra-node/src/Hydra/Chain/Direct/Tx.hs b/hydra-node/src/Hydra/Chain/Direct/Tx.hs index be04eca9eca..a0eca5920eb 100644 --- a/hydra-node/src/Hydra/Chain/Direct/Tx.hs +++ b/hydra-node/src/Hydra/Chain/Direct/Tx.hs @@ -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