Skip to content

Commit

Permalink
fix: correct datum kind for set_datum_hash (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhrpr authored Jan 2, 2024
1 parent afa397f commit b78ceda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallas-txbuilder/src/transaction/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ impl Output {

pub fn set_datum_hash(mut self, datum_hash: Hash<32>) -> Self {
self.datum = Some(Datum {
kind: DatumKind::Inline,
kind: DatumKind::Hash,
bytes: datum_hash.to_vec().into(),
});

Expand Down

0 comments on commit b78ceda

Please sign in to comment.