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
Afaic tell, nodes should only validate message signatures when syncing, and deal with invalid messahes when executing the message in the subsequent tipset. I think we do perform some message validity checks when syncing a block. Blocks with such invalid messages will not be added at all, which I believe is spec-incompliant. If true, this will obviously call interop issues.
Here is a non-exhaustive list of validity checks we seem to perform:
Sender can be found (happens when validating nonces)
Sender is an account (will only happen if sender address is an ID address)
Expected nonces (side-note: how do we order multiple messages from the same sender?)
The text was updated successfully, but these errors were encountered:
Afaic tell, nodes should only validate message signatures when syncing, and deal with invalid messahes when executing the message in the subsequent tipset. I think we do perform some message validity checks when syncing a block. Blocks with such invalid messages will not be added at all, which I believe is spec-incompliant. If true, this will obviously call interop issues.
Here is a non-exhaustive list of validity checks we seem to perform:
The text was updated successfully, but these errors were encountered: