Struct lightning::routing::network_graph::NetworkGraph [−][src]
pub struct NetworkGraph { /* fields omitted */ }
Represents the network as nodes and channels between them
Implementations
impl NetworkGraph
[src]
impl NetworkGraph
[src]pub fn get_channels<'a>(&'a self) -> &'a BTreeMap<u64, ChannelInfo>
[src]
Returns all known valid channels’ short ids along with announced channel info.
(C-not exported) because we have no mapping for BTreeMap
s
pub fn get_nodes<'a>(&'a self) -> &'a BTreeMap<PublicKey, NodeInfo>
[src]
Returns all known nodes’ public keys along with announced node info.
(C-not exported) because we have no mapping for BTreeMap
s
pub fn get_addresses<'a>(
&'a self,
pubkey: &PublicKey
) -> Option<&'a Vec<NetAddress>>
[src]
&'a self,
pubkey: &PublicKey
) -> Option<&'a Vec<NetAddress>>
Get network addresses by node id. Returns None if the requested node is completely unknown, or if node announcement for the node was never received.
(C-not exported) as there is no practical way to track lifetimes of returned values.
pub fn new(genesis_hash: BlockHash) -> NetworkGraph
[src]
Creates a new, empty, network graph.
pub fn update_node_from_announcement<T: Verification>(
&mut self,
msg: &NodeAnnouncement,
secp_ctx: &Secp256k1<T>
) -> Result<(), LightningError>
[src]
&mut self,
msg: &NodeAnnouncement,
secp_ctx: &Secp256k1<T>
) -> Result<(), LightningError>
For an already known node (from channel announcements), update its stored properties from a given node announcement.
You probably don’t want to call this directly, instead relying on a NetGraphMsgHandler’s RoutingMessageHandler implementation to call it indirectly. This may be useful to accept routing messages from a source using a protocol other than the lightning P2P protocol.
pub fn update_node_from_unsigned_announcement(
&mut self,
msg: &UnsignedNodeAnnouncement
) -> Result<(), LightningError>
[src]
&mut self,
msg: &UnsignedNodeAnnouncement
) -> Result<(), LightningError>
For an already known node (from channel announcements), update its stored properties from a given node announcement without verifying the associated signatures. Because we aren’t given the associated signatures here we cannot relay the node announcement to any of our peers.
pub fn update_channel_from_announcement<T: Verification, C: Deref>(
&mut self,
msg: &ChannelAnnouncement,
chain_access: &Option<C>,
secp_ctx: &Secp256k1<T>
) -> Result<(), LightningError> where
C::Target: Access,
[src]
&mut self,
msg: &ChannelAnnouncement,
chain_access: &Option<C>,
secp_ctx: &Secp256k1<T>
) -> Result<(), LightningError> where
C::Target: Access,
Store or update channel info from a channel announcement.
You probably don’t want to call this directly, instead relying on a NetGraphMsgHandler’s RoutingMessageHandler implementation to call it indirectly. This may be useful to accept routing messages from a source using a protocol other than the lightning P2P protocol.
If a chain::Access
object is provided via chain_access
, it will be called to verify
the corresponding UTXO exists on chain and is correctly-formatted.
pub fn update_channel_from_unsigned_announcement<C: Deref>(
&mut self,
msg: &UnsignedChannelAnnouncement,
chain_access: &Option<C>
) -> Result<(), LightningError> where
C::Target: Access,
[src]
&mut self,
msg: &UnsignedChannelAnnouncement,
chain_access: &Option<C>
) -> Result<(), LightningError> where
C::Target: Access,
Store or update channel info from a channel announcement without verifying the associated signatures. Because we aren’t given the associated signatures here we cannot relay the channel announcement to any of our peers.
If a chain::Access
object is provided via chain_access
, it will be called to verify
the corresponding UTXO exists on chain and is correctly-formatted.
pub fn close_channel_from_update(
&mut self,
short_channel_id: u64,
is_permanent: bool
)
[src]
&mut self,
short_channel_id: u64,
is_permanent: bool
)
Close a channel if a corresponding HTLC fail was sent. If permanent, removes a channel from the local storage. May cause the removal of nodes too, if this was their last channel. If not permanent, makes channels unavailable for routing.
pub fn update_channel<T: Verification>(
&mut self,
msg: &ChannelUpdate,
secp_ctx: &Secp256k1<T>
) -> Result<(), LightningError>
[src]
&mut self,
msg: &ChannelUpdate,
secp_ctx: &Secp256k1<T>
) -> Result<(), LightningError>
For an already known (from announcement) channel, update info about one of the directions of the channel.
You probably don’t want to call this directly, instead relying on a NetGraphMsgHandler’s RoutingMessageHandler implementation to call it indirectly. This may be useful to accept routing messages from a source using a protocol other than the lightning P2P protocol.
pub fn update_channel_unsigned(
&mut self,
msg: &UnsignedChannelUpdate
) -> Result<(), LightningError>
[src]
&mut self,
msg: &UnsignedChannelUpdate
) -> Result<(), LightningError>
For an already known (from announcement) channel, update info about one of the directions of the channel without verifying the associated signatures. Because we aren’t given the associated signatures here we cannot relay the channel update to any of our peers.
Trait Implementations
impl Clone for NetworkGraph
[src]
impl Clone for NetworkGraph
[src]fn clone(&self) -> NetworkGraph
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<NetworkGraph> for NetworkGraph
[src]
impl PartialEq<NetworkGraph> for NetworkGraph
[src]fn eq(&self, other: &NetworkGraph) -> bool
[src]
fn ne(&self, other: &NetworkGraph) -> bool
[src]
impl Readable for NetworkGraph
[src]
impl Readable for NetworkGraph
[src]fn read<R: Read>(reader: &mut R) -> Result<NetworkGraph, DecodeError>
[src]
impl StructuralPartialEq for NetworkGraph
[src]
impl StructuralPartialEq for NetworkGraph
[src]Auto Trait Implementations
impl RefUnwindSafe for NetworkGraph
impl RefUnwindSafe for NetworkGraph
impl Send for NetworkGraph
impl Send for NetworkGraph
impl Sync for NetworkGraph
impl Sync for NetworkGraph
impl Unpin for NetworkGraph
impl Unpin for NetworkGraph
impl UnwindSafe for NetworkGraph
impl UnwindSafe for NetworkGraph