Skip to content

Commit e5ad6ca

Browse files
committed
hard fork in maintenance
1 parent 37a8d16 commit e5ad6ca

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/tron/core/db/DynamicPropertiesStore.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import org.springframework.beans.factory.annotation.Value;
1111
import org.springframework.stereotype.Component;
1212
import org.tron.common.utils.ByteArray;
13-
import org.tron.common.utils.ByteUtil;
1413
import org.tron.common.utils.Sha256Hash;
1514
import org.tron.core.capsule.BytesCapsule;
1615
import org.tron.core.config.Parameter;
@@ -1411,7 +1410,7 @@ public byte[] statsByVersion(int version) {
14111410
String statsKey = FORK_PREFIX + version;
14121411
return revokingDB.getUnchecked(statsKey.getBytes());
14131412
}
1414-
1413+
14151414
public boolean getForked() {
14161415
byte[] value = revokingDB.getUnchecked(FORK_CONTROLLER);
14171416
return value == null ? Boolean.FALSE : Boolean.valueOf(new String(value));

0 commit comments

Comments
 (0)