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
"the provided node id does not match the one returned by the backend ({} != {}).", pk, node_id)));
53
+
"the provided node id does not match the one returned by the backend ({} != {}).",
54
+
pk, node_id
55
+
)));
54
56
}
55
57
},
56
58
crate::NodeId::Alias(a) => {
57
59
if alias != a {
58
-
log::warn!("The provided alias does not match the one returned by the backend ({} != {}).", a, alias)
60
+
log::warn!(
61
+
"The provided alias does not match the one returned by the backend ({} != {}).",
62
+
a,
63
+
alias
64
+
)
59
65
}
60
66
*alias = a.to_string();
61
67
},
@@ -443,7 +449,10 @@ impl Simulation {
443
449
for node inself.nodes.values(){
444
450
let node = node.lock().await;
445
451
if !node.get_info().features.supports_keysend(){
446
-
returnErr(LightningError::ValidationError(format!("All nodes eligible for random activity generation must support keysend, {} does not", node.get_info())));
0 commit comments