increase msg size

This commit is contained in:
Youngjoon Lee 2025-02-06 17:03:32 +09:00
parent f88a180cf3
commit b2337c1253
No known key found for this signature in database
GPG Key ID: D94003D91DE12141

View File

@ -67,7 +67,11 @@ impl BlendMessage {
impl PayloadSize for BlendMessage {
fn size_bytes(&self) -> u32 {
2208
// payload: 32 KiB
// header encryption overhead: 133 bytes = 48 + 17 * max_blend_hops(=5)
// payload encryption overhaed: 16 bytes
// economic data overhead: 8043 bytes
40960
}
}