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
log::info!("Payment count has been met for {}: {c} payments. Stopping the activity.",payment_tracker.executor.source_info);
1150
+
log::info!("Payment count has been met for {}: {c} payments. Stopping the activity.",source);
1151
1151
continue
1152
1152
}
1153
1153
}
1154
-
let node = nodes.get(&payment_tracker.executor.source_info.pubkey).ok_or(SimulationError::MissingNodeError(format!("Source node not found, {}", payment_tracker.executor.source_info.pubkey)))?.clone();
1154
+
let node = nodes.get(&source).ok_or(
1155
+
SimulationError::MissingNodeError(format!("Source node not found, {}", source)))?.clone();
0 commit comments