We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c751a3 + 1071b7e commit 649a732Copy full SHA for 649a732
src/main/java/org/tron/core/db/UtxoStore.java
@@ -44,9 +44,6 @@ private UtxoStore(@Value("utxo") String dbName) {
44
super(dbName);
45
}
46
47
- public void reSet() {
48
- this.dbSource.resetDb();
49
- }
50
51
public byte[] find(byte[] key) {
52
return dbSource.getData(key);
@@ -139,4 +136,5 @@ public Object get(byte[] key) {
139
136
public boolean has(byte[] key) {
140
137
return false;
141
138
+
142
src/main/java/org/tron/core/services/WitnessService.java
@@ -131,6 +131,7 @@ private void blockProductionLoop() throws InterruptedException {
131
break;
132
case TIME_OUT:
133
logger.debug("Time out");
134
+ break;
135
case EXCEPTION_PRODUCING_BLOCK:
logger.info("Exception");
0 commit comments