removed f variable, to fix
This commit is contained in:
parent
76e95f2859
commit
d6cd0f1f20
@ -119,11 +119,15 @@ impl EventDispatcher {
|
||||
F: Fn(&Event, &PairStatus) -> Fut,
|
||||
Fut: Future<Output = ()> + Send,
|
||||
{
|
||||
let f = Box::new(move |e, s| tokio::spawn(f(&e, s)));
|
||||
|
||||
match event {
|
||||
EventKind::Any => self.on_any_event_handlers.push(f),
|
||||
_ => self.event_handlers.entry(event).or_default().push(f),
|
||||
EventKind::Any => self
|
||||
.on_any_event_handlers
|
||||
.push(Box::new(move |e, s| tokio::spawn(f(&e, s)))),
|
||||
_ => self
|
||||
.event_handlers
|
||||
.entry(event)
|
||||
.or_default()
|
||||
.push(Box::new(move |e, s| tokio::spawn(f(&e, s)))),
|
||||
}
|
||||
}
|
||||
|
||||
@ -135,15 +139,15 @@ impl EventDispatcher {
|
||||
F: Fn(&PositionWrapper, &PairStatus) -> Fut,
|
||||
Fut: Future<Output = ()> + Send,
|
||||
{
|
||||
let f = Box::new(move |pw, s| tokio::spawn(f(&pw, s)));
|
||||
|
||||
match state {
|
||||
PositionState::Any => self.on_any_position_state_handlers.push(f),
|
||||
PositionState::Any => self
|
||||
.on_any_position_state_handlers
|
||||
.push(Box::new(move |pw, s| tokio::spawn(f(&pw, s)))),
|
||||
_ => self
|
||||
.position_state_handlers
|
||||
.entry(state)
|
||||
.or_default()
|
||||
.push(f),
|
||||
.push(Box::new(move |pw, s| tokio::spawn(f(&pw, s)))),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -13,6 +13,7 @@ pub enum PositionState {
|
||||
impl PositionState {
|
||||
fn color(self) -> String {
|
||||
match self {
|
||||
PositionState::Any => "blue",
|
||||
PositionState::Critical | PositionState::Loss => "red",
|
||||
PositionState::BreakEven => "yellow",
|
||||
PositionState::MinimumProfit | PositionState::Profit => "green",
|
||||
|
Loading…
Reference in New Issue
Block a user