Skip to content

Commit

Permalink
Wrap things up
Browse files Browse the repository at this point in the history
  • Loading branch information
v0d1ch committed Oct 4, 2024
1 parent 9bd06ab commit efe7083
Show file tree
Hide file tree
Showing 6 changed files with 150 additions and 626 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ changes.

## Unreleased

- **IMPORTANT - Do not release this version**
- Incremental commits - off-chain changes to make the incremental commits possible.
Important to note is that on-chain security is not implemented and hydra-node in this
state is not releasable!
Missing off-chain items to implement as a series of next PR's:
- Use the observed UTxO to construct increment/recover
- Add documentation to explain the feature
- Implement tests scenarios outlined in the [incremental-commit] (https://github.com/cardano-scaling/hydra/issues/199) issue
- Remove Commit client input since it is unused
- Revisit types related to observations/posting transactions and make sure the fields are named appropriatelly

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

## [0.19.0] - 2024-09-13
Expand Down
3 changes: 1 addition & 2 deletions hydra-cluster/src/Hydra/Cluster/Scenarios.hs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ import Hydra.Cardano.Api (
mkScriptAddress,
mkScriptDatum,
mkScriptWitness,
mkTxIn,
mkTxOutDatumHash,
mkVkAddress,
scriptWitnessInCtx,
Expand Down Expand Up @@ -439,7 +438,7 @@ singlePartyCommitsScriptBlueprint tracer workDir node hydraScriptsTxId =
waitFor hydraTracer 10 [n1] $
output "CommitApproved" ["headId" .= headId, "utxoToCommit" .= scriptUTxO']
waitFor hydraTracer 10 [n1] $
output "CommitFinalized" ["headId" .= headId, "utxo" .= scriptUTxO', "theDeposit" .= mkTxIn tx 0]
output "CommitFinalized" ["headId" .= headId, "utxo" .= scriptUTxO', "theDeposit" .= getTxId (getTxBody tx)]

send n1 $ input "GetUTxO" []

Expand Down
Loading

0 comments on commit efe7083

Please sign in to comment.