Skip to content

Commit

Permalink
fixed DB prefix collision
Browse files Browse the repository at this point in the history
  • Loading branch information
bayk committed Dec 16, 2024
1 parent 5e6fbb4 commit 13bb473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const BLOCK_SPENT_PREFIX: u8 = b'S';
const BLOCK_SPENT_COMMITMENT_PREFIX: u8 = b'C';

/// Prefix for various boolean flags stored in the db.
const BOOL_FLAG_PREFIX: u8 = b'B';
const BOOL_FLAG_PREFIX: u8 = b'F';
/// Boolean flag for v3 migration.
const BLOCKS_V3_MIGRATED: &str = "blocks_v3_migrated";

Expand Down

0 comments on commit 13bb473

Please sign in to comment.