You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//TODO: Check if value is worth storing, use it to inform routing, and compare it
64
-
//to the new HTLC max field in channel_update
65
-
Some(value)
67
+
Ok(Some(value))
66
68
},
67
69
Err(UtxoLookupError::UnknownChain) => {
68
-
returnErr(LightningError{err:format!("Channel announced on an unknown chain ({})", msg.chain_hash.encode().to_hex()),action:ErrorAction::IgnoreError});
70
+
Err(LightningError{
71
+
err:format!("Channel announced on an unknown chain ({})",
72
+
msg.chain_hash.encode().to_hex()),
73
+
action:ErrorAction::IgnoreError
74
+
})
69
75
},
70
76
Err(UtxoLookupError::UnknownTx) => {
71
-
returnErr(LightningError{err:"Channel announced without corresponding UTXO entry".to_owned(),action:ErrorAction::IgnoreError});
77
+
Err(LightningError{
78
+
err:"Channel announced without corresponding UTXO entry".to_owned(),
0 commit comments