Skip to content

Commit

Permalink
Fix Message::LENGTH_MIN (#1393)
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez authored May 5, 2022
1 parent c847049 commit ebaac80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bee-message/src/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub struct Message {

impl Message {
/// The minimum number of bytes in a message.
pub const LENGTH_MIN: usize = 53;
pub const LENGTH_MIN: usize = 46;
/// The maximum number of bytes in a message.
pub const LENGTH_MAX: usize = 32768;

Expand Down

0 comments on commit ebaac80

Please sign in to comment.