blossomsub: Increase default maximum message size to 20MiB (#385)

This commit is contained in:
petricadaipegsp 2024-11-25 00:02:24 +01:00 committed by GitHub
parent 8790e09e36
commit 86997630f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,8 +26,8 @@ import (
logging "github.com/ipfs/go-log/v2"
)
// DefaultMaximumMessageSize is 10 MB.
const DefaultMaxMessageSize = 10 << 20
// DefaultMaximumMessageSize is 20 MB.
const DefaultMaxMessageSize = 10 << 21
var (
// TimeCacheDuration specifies how long a message ID will be remembered as seen.