From b91fc59f4d7592a1096a53b3de8ce6404575f150 Mon Sep 17 00:00:00 2001 From: muXxer Date: Tue, 28 Nov 2023 19:03:00 +0100 Subject: [PATCH] Fix missing RawOutputIDProof in INX --- components/inx/server_utxo.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/inx/server_utxo.go b/components/inx/server_utxo.go index fe732b384..4e1c6464e 100644 --- a/components/inx/server_utxo.go +++ b/components/inx/server_utxo.go @@ -27,6 +27,9 @@ func NewLedgerOutput(o *utxoledger.Output) (*inx.LedgerOutput, error) { Output: &inx.RawOutput{ Data: o.Bytes(), }, + OutputIdProof: &inx.RawOutputIDProof{ + Data: o.ProofBytes(), + }, } includedSlot := o.SlotBooked()