File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/org/tron/core/db Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 10
10
import org .springframework .beans .factory .annotation .Value ;
11
11
import org .springframework .stereotype .Component ;
12
12
import org .tron .common .utils .ByteArray ;
13
- import org .tron .common .utils .ByteUtil ;
14
13
import org .tron .common .utils .Sha256Hash ;
15
14
import org .tron .core .capsule .BytesCapsule ;
16
15
import org .tron .core .config .Parameter ;
@@ -1411,7 +1410,7 @@ public byte[] statsByVersion(int version) {
1411
1410
String statsKey = FORK_PREFIX + version ;
1412
1411
return revokingDB .getUnchecked (statsKey .getBytes ());
1413
1412
}
1414
-
1413
+
1415
1414
public boolean getForked () {
1416
1415
byte [] value = revokingDB .getUnchecked (FORK_CONTROLLER );
1417
1416
return value == null ? Boolean .FALSE : Boolean .valueOf (new String (value ));
You can’t perform that action at this time.
0 commit comments