Skip to content

Commit

Permalink
Remove BlockStatus::BLOCK_PARTIAL_STORED
Browse files Browse the repository at this point in the history
Signed-off-by: Eval EXEC <execvy@gmail.com>
  • Loading branch information
eval-exec committed Jan 16, 2024
1 parent 5001d19 commit 1eae3b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions shared/src/block_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ bitflags! {

const HEADER_VALID = 1;
const BLOCK_RECEIVED = 1 | Self::HEADER_VALID.bits << 1;
const BLOCK_PARTIAL_STORED = 1 | Self::BLOCK_RECEIVED.bits << 1;
const BLOCK_STORED = 1 | Self::BLOCK_PARTIAL_STORED.bits << 1;
const BLOCK_STORED = 1 | Self::BLOCK_RECEIVED.bits << 1;
const BLOCK_VALID = 1 | Self::BLOCK_STORED.bits << 1;

const BLOCK_INVALID = 1 << 12;
Expand Down

0 comments on commit 1eae3b1

Please sign in to comment.