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
54
-
//to the new HTLC max field in channel_update
55
-
Some(value)
57
+
Ok(Some(value))
56
58
},
57
59
Err(ChainAccessError::UnknownChain) => {
58
-
returnErr(LightningError{err:format!("Channel announced on an unknown chain ({})", msg.chain_hash.encode().to_hex()),action:ErrorAction::IgnoreError});
60
+
Err(LightningError{
61
+
err:format!("Channel announced on an unknown chain ({})",
62
+
msg.chain_hash.encode().to_hex()),
63
+
action:ErrorAction::IgnoreError
64
+
})
59
65
},
60
66
Err(ChainAccessError::UnknownTx) => {
61
-
returnErr(LightningError{err:"Channel announced without corresponding UTXO entry".to_owned(),action:ErrorAction::IgnoreError});
67
+
Err(LightningError{
68
+
err:"Channel announced without corresponding UTXO entry".to_owned(),
0 commit comments