Fix get nonce check

Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
Jakub Sztandera 2021-04-01 13:19:00 +02:00
parent e2d0047a2a
commit 87df73a455
No known key found for this signature in database
GPG Key ID: 9A9AF56F8B3879BA

View File

@ -163,6 +163,8 @@ func (mp *MessagePool) checkMessages(msgs []*types.Message, interned bool) (resu
st = &actorState{nextNonce: stateNonce, requiredFunds: new(stdbig.Int)}
state[m.From] = st
}
} else {
check.OK = true
}
result[i] = append(result[i], check)