From f37f45fc0879fb514c68893c93999bf7e23a7883 Mon Sep 17 00:00:00 2001 From: ffranr Date: Thu, 31 Aug 2023 15:21:40 +0100 Subject: [PATCH] proof: clarify doc for Proof.PrevOut --- proof/proof.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/proof/proof.go b/proof/proof.go index 4dd9af215..67f9d5b4a 100644 --- a/proof/proof.go +++ b/proof/proof.go @@ -131,7 +131,9 @@ type Watcher interface { // Proof encodes all of the data necessary to prove a valid state transition for // an asset has occurred within an on-chain transaction. type Proof struct { - // PrevOut is the previous on-chain outpoint of the asset. + // PrevOut is the previous on-chain outpoint of the asset. This outpoint + // is that of the first on-chain input. Outpoints which correspond to + // the other inputs can be found in AdditionalInputs. PrevOut wire.OutPoint // BlockHeader is the current block header committing to the on-chain