Only break if Bob has requested amounts already

We don't want Bob to be able to crash us by sending an out of
order message. Only break if Bob has not requested amounts.
This commit is contained in:
Tobin C. Harding 2020-10-27 09:59:30 +11:00
parent 5da84a3d48
commit b8130d23a6

View File

@ -51,10 +51,13 @@ pub async fn swap(
swarm.send_amounts(channel, p); swarm.send_amounts(channel, p);
} }
OutEvent::Message0(msg) => { OutEvent::Message0(msg) => {
debug!("Got message0 from Bob"); // We don't want Bob to be able to crash us by sending an out of
// TODO: Do this in a more Rusty/functional way. // order message. Keep looping if Bob has not requested amounts.
message0 = msg; if last_amounts.is_some() {
break; // TODO: We should verify the amounts and notify Bob if they have changed.
message0 = msg;
break;
}
} }
other => panic!("Unexpected event: {:?}", other), other => panic!("Unexpected event: {:?}", other),
}; };