We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 565aef5 commit a76e177Copy full SHA for a76e177
1 file changed
plugins/src/test/java/org/tron/plugins/DbLiteTest.java
@@ -117,8 +117,8 @@ void testTools(String dbType, int checkpointVersion)
117
cli.execute(argsForSnapshot);
118
// start fullNode
119
startApp();
120
- // produce transactions for 6 seconds
121
- generateSomeTransactions(6);
+ // produce transactions
+ generateSomeTransactions(checkpointVersion == 1 ? 6 : 18);
122
// stop the node
123
shutdown();
124
// generate history
@@ -139,7 +139,7 @@ void testTools(String dbType, int checkpointVersion)
139
}
140
// start and validate the snapshot
141
142
+ generateSomeTransactions(checkpointVersion == 1 ? 18 : 6);
143
144
145
// merge history
0 commit comments