use wallet::LexOrder;
use crate::payment::ExtensionId;
use crate::{channel, ChannelExtension, Extension, Messages};
pub struct Bip96;
impl Extension for Bip96 {
type Identity = ExtensionId;
#[inline]
fn identity(&self) -> Self::Identity {
ExtensionId::Bip96
}
#[inline]
fn update_from_peer(&mut self, _: &Messages) -> Result<(), channel::Error> {
Ok(())
}
#[inline]
fn extension_state(&self) -> Box<dyn channel::State> {
Box::new(())
}
}
impl ChannelExtension for Bip96 {
#[inline]
fn channel_state(&self) -> Box<dyn channel::State> {
Box::new(())
}
#[inline]
fn apply(
&mut self,
tx_graph: &mut channel::TxGraph,
) -> Result<(), channel::Error> {
tx_graph.cmt_outs.lex_order();
tx_graph
.vec_mut()
.into_iter()
.for_each(|(_, _, tx)| tx.lex_order());
Ok(())
}
}