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

Update doc/schema.md to fix description of tx_id in datum and redeemer #1482

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions cardano-db/src/Cardano/Db/Schema.hs
Original file line number Diff line number Diff line change
Expand Up @@ -852,14 +852,14 @@ schemaDocs =
Datum --^ do
"A table containing Plutus Datum, found in witnesses or inlined in outputs"
DatumHash # "The Hash of the Datum"
DatumTxId # "The Tx table index for the transaction where this script first became available."
DatumTxId # "The Tx table index for the transaction where this datum was first observed."
DatumValue # "The actual data in JSON format (detailed schema)"
DatumBytes # "The actual data in CBOR format"

RedeemerData --^ do
"A table containing Plutus Redeemer Data. These are always referenced by at least one redeemer. New in v13: split from datum table."
RedeemerDataHash # "The Hash of the Plutus Data"
RedeemerDataTxId # "The Tx table index for the transaction where this script first became available."
RedeemerDataTxId # "The Tx table index for the transaction where this redeemer data was first used."
RedeemerDataValue # "The actual data in JSON format (detailed schema)"
RedeemerDataBytes # "The actual data in CBOR format"

Expand Down