mirror of
https://github.com/lightninglabs/loop
synced 2024-11-04 06:00:21 +00:00
41 lines
919 B
Go
41 lines
919 B
Go
package swap
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/btcsuite/btcd/btcutil"
|
|
"github.com/btcsuite/btcd/wire"
|
|
)
|
|
|
|
// GetScriptOutput locates the given script in the outputs of a transaction and
|
|
// returns its outpoint and value.
|
|
func GetScriptOutput(htlcTx *wire.MsgTx, scriptHash []byte) (
|
|
*wire.OutPoint, btcutil.Amount, error) {
|
|
|
|
for idx, output := range htlcTx.TxOut {
|
|
if bytes.Equal(output.PkScript, scriptHash) {
|
|
return &wire.OutPoint{
|
|
Hash: htlcTx.TxHash(),
|
|
Index: uint32(idx),
|
|
}, btcutil.Amount(output.Value), nil
|
|
}
|
|
}
|
|
|
|
return nil, 0, fmt.Errorf("cannot determine outpoint")
|
|
}
|
|
|
|
// GetTxInputByOutpoint returns a tx input based on a given input outpoint.
|
|
func GetTxInputByOutpoint(tx *wire.MsgTx, input *wire.OutPoint) (
|
|
*wire.TxIn, error) {
|
|
|
|
for _, in := range tx.TxIn {
|
|
if in.PreviousOutPoint == *input {
|
|
return in, nil
|
|
}
|
|
}
|
|
|
|
return nil, errors.New("input not found")
|
|
}
|