core: Add TxSigComponent.spendingOutputs

This commit is contained in:
Chris Stewart 2025-03-12 09:01:45 -05:00
parent c999084d97
commit cb075bd707

View file

@ -48,6 +48,9 @@ sealed abstract class TxSigComponent {
* for Bitcoin * for Bitcoin
*/ */
def sigVersion: SignatureVersion def sigVersion: SignatureVersion
/** Where we we are spending money to */
def spendingOutputs: Vector[TransactionOutput] = transaction.outputs
} }
object TxSigComponent { object TxSigComponent {