We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
e.g. we're bob, and we're trying to verify alice: - bob1 sends .request - alice1 sends .ready - bob2 send .cancel saying .ready is unexpected in phase PHASE_UNSENT
see VerificationRequest._cancelOnError:
const isUnexpectedRequest = type === REQUEST_TYPE && this.phase !== PHASE_UNSENT; const isUnexpectedReady = type === READY_TYPE && this.phase !== PHASE_REQUESTED; if (isUnexpectedRequest || isUnexpectedReady) { logger.warn(`Cancelling, unexpected ${type} verification ` + `event from ${event.getSender()}`); const reason = `Unexpected ${type} event in phase ${this.phase}`; await this.cancel(errorFromEvent(newUnexpectedMessageError({reason}))); return true; }
Sorry, something went wrong.
It's not sending a .cancel anymore but the UX is still off, filed #11964 for that and closing this.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: