Skip to content

Commit

Permalink
Revert CLN to correct CLT
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominion5254 committed Jan 28, 2024
1 parent dbf5ef7 commit a76dade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configurator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ pub enum NodeType {
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub enum RTLNodeType {
LND,
CLN,
CLT,
}

impl From<NodeType> for RTLNodeType {
fn from(nt: NodeType) -> RTLNodeType {
match nt {
NodeType::CLightning => RTLNodeType::CLN,
NodeType::CLightning => RTLNodeType::CLT,
NodeType::Lnd => RTLNodeType::LND,
}
}
Expand Down

0 comments on commit a76dade

Please sign in to comment.