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
当前平行链节点启动会从已有区块继续执行,不会对历史区块做是否和当前的bin一致的计算结果的校验。 比如一个新版本启动,不会对旧区块做校验,现在要求运维每次更新必须删除旧区块,重新执行比对block hash是否和曾经区块一致来校验。非常不方便,而且容易遗漏或犯错。 期望每次启动增加对历史区块的校验机制。如果校验失败,则panic,提示用户增加fork或其他操作。 大概实现是:
The text was updated successfully, but these errors were encountered:
校验层的设计需要重新执行数据库,会影响平行链区块,不合适 可行的方案有:
Sorry, something went wrong.
No branches or pull requests
当前平行链节点启动会从已有区块继续执行,不会对历史区块做是否和当前的bin一致的计算结果的校验。 比如一个新版本启动,不会对旧区块做校验,现在要求运维每次更新必须删除旧区块,重新执行比对block hash是否和曾经区块一致来校验。非常不方便,而且容易遗漏或犯错。
期望每次启动增加对历史区块的校验机制。如果校验失败,则panic,提示用户增加fork或其他操作。
大概实现是:
The text was updated successfully, but these errors were encountered: