We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10223cc commit 56efc4eCopy full SHA for 56efc4e
1 file changed
chainbase/src/main/java/org/tron/core/db2/core/SnapshotManager.java
@@ -493,7 +493,9 @@ public void check() {
493
if (!isV2Open()) {
494
List<String> cpList = getCheckpointList();
495
if (cpList != null && cpList.size() != 0) {
496
- logger.error("checkpoint check failed, can't convert checkpoint from v2 to v1");
+ logger.error("checkpoint check failed, the checkpoint version of database not match your " +
497
+ "config file, please set storage.checkpoint.version = 2 in your config file " +
498
+ "and restart the node.");
499
System.exit(-1);
500
}
501
checkV1();
0 commit comments