Skip to content

Commit

Permalink
uncomment GoQuorum column families (hyperledger#5350)
Browse files Browse the repository at this point in the history
Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
  • Loading branch information
macfarla authored and elenduuche committed Aug 16, 2023
1 parent 69f33c3 commit 5b4f88b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}),
Expand Down

0 comments on commit 5b4f88b

Please sign in to comment.