address review

This commit is contained in:
Łukasz Magiera 2019-11-27 13:18:22 +01:00
parent 67b22ac22e
commit eeb5a14e46

View File

@ -382,7 +382,7 @@ func (mp *MessagePool) Remove(from address.Address, nonce uint64) {
max = nonce
}
}
if nonce > max {
if max < nonce {
max = nonce // we could have not seen the removed message before
}