use bitcoin::hash_types::Txid;
use bitcoin::transaction::OutPoint as BitcoinOutPoint;
use bitcoin::transaction::Transaction;
pub type TransactionData<'a> = [(usize, &'a Transaction)];
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug, Hash)]
pub struct OutPoint {
pub txid: Txid,
pub index: u16,
}
impl OutPoint {
pub fn into_bitcoin_outpoint(self) -> BitcoinOutPoint {
BitcoinOutPoint { txid: self.txid, vout: self.index as u32 }
}
}
impl core::fmt::Display for OutPoint {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}:{}", self.txid, self.index)
}
}
impl_writeable!(OutPoint, { txid, index });
#[derive(Debug, Clone)]
pub(crate) struct MaybeSignedTransaction(pub Transaction);
impl MaybeSignedTransaction {
pub fn is_fully_signed(&self) -> bool {
!self.0.input.iter().any(|input| input.witness.is_empty())
}
}
#[cfg(test)]
mod tests {
use crate::chain::transaction::OutPoint;
use crate::ln::types::ChannelId;
use bitcoin::consensus::encode;
use bitcoin::hex::FromHex;
use bitcoin::transaction::Transaction;
#[test]
fn test_channel_id_calculation() {
let tx_hex = "020000000001010e0adef48412e4361325ac1c6e36411299ab09d4f083b9d8ddb55fbc06e1b0c00000000000feffffff0220a1070000000000220020f81d95e040bd0a493e38bae27bff52fe2bb58b93b293eb579c01c31b05c5af1dc072cfee54a3000016001434b1d6211af5551905dc2642d05f5b04d25a8fe80247304402207f570e3f0de50546aad25a872e3df059d277e776dda4269fa0d2cc8c2ee6ec9a022054e7fae5ca94d47534c86705857c24ceea3ad51c69dd6051c5850304880fc43a012103cb11a1bacc223d98d91f1946c6752e358a5eb1a1c983b3e6fb15378f453b76bd00000000";
let tx: Transaction =
encode::deserialize(&<Vec<u8>>::from_hex(tx_hex).unwrap()[..]).unwrap();
let txid = tx.compute_txid();
let id_0 = ChannelId::v1_from_funding_outpoint(OutPoint { txid, index: 0 });
let expected_0 = "3e88dd7165faf7be58b3c5bb2c9c452aebef682807ea57080f62e6f6e113c25e";
assert_eq!(&id_0.0[..], &Vec::<u8>::from_hex(expected_0).unwrap()[..]);
let id_1 = ChannelId::v1_from_funding_outpoint(OutPoint { txid, index: 1 });
let expected_1 = "3e88dd7165faf7be58b3c5bb2c9c452aebef682807ea57080f62e6f6e113c25f";
assert_eq!(&id_1.0[..], &Vec::<u8>::from_hex(expected_1).unwrap()[..]);
}
}