uncomment GoQuorum column families (#5350)

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
pull/5352/head
Sally MacFarlane 2 years ago committed by GitHub
parent 080fe87c81
commit 67dba233da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      ethereum/core/src/main/java/org/hyperledger/besu/ethereum/storage/keyvalue/KeyValueSegmentIdentifier.java

@ -29,9 +29,12 @@ public enum KeyValueSegmentIdentifier implements SegmentIdentifier {
ACCOUNT_STORAGE_STORAGE(new byte[] {8}, new int[] {2}),
TRIE_BRANCH_STORAGE(new byte[] {9}, new int[] {2}),
TRIE_LOG_STORAGE(new byte[] {10}, new int[] {2}),
// previously supported GoQuorum private states
// GOQUORUM_PRIVATE_WORLD_STATE(new byte[] {11}),
// GOQUORUM_PRIVATE_STORAGE(new byte[] {12}),
// no longer used but need to be retained for db backward compatibility
GOQUORUM_PRIVATE_WORLD_STATE(new byte[] {11}),
GOQUORUM_PRIVATE_STORAGE(new byte[] {12}),
BACKWARD_SYNC_HEADERS(new byte[] {13}),
BACKWARD_SYNC_BLOCKS(new byte[] {14}),
BACKWARD_SYNC_CHAIN(new byte[] {15}),

Loading…
Cancel
Save