diff --git a/core/src/main/scala/org/bitcoins/core/crypto/TxSigComponent.scala b/core/src/main/scala/org/bitcoins/core/crypto/TxSigComponent.scala index 204ef3bdff..5a87db3f54 100644 --- a/core/src/main/scala/org/bitcoins/core/crypto/TxSigComponent.scala +++ b/core/src/main/scala/org/bitcoins/core/crypto/TxSigComponent.scala @@ -48,6 +48,9 @@ sealed abstract class TxSigComponent { * for Bitcoin */ def sigVersion: SignatureVersion + + /** Where we we are spending money to */ + def spendingOutputs: Vector[TransactionOutput] = transaction.outputs } object TxSigComponent {