-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
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
Add Member::expelled
#164
Comments
Tips
|
Implement version validation and comparison in verify_reserved_state()
Elaborate validation login in verify_reserved_state()
Check that the version advances correctly.cc. @yuhatown struct Task // 2. Check that the version advances correctly.
if self.reserved_state.version != rs.version {
if !(self.reserved_state.version < rs.version && verify_version_syntax(&rs.version)) {
return Err(Error::InvalidArgument(format!("Version advances is incorrect")));
}
} Considering the point where the version of the
|
The text was updated successfully, but these errors were encountered: