Skip to content

Commit

Permalink
ipfs: MaxFileSizeBytes = 1GiB (instead of 100MB)
Browse files Browse the repository at this point in the history
  • Loading branch information
altergui committed Sep 17, 2024
1 parent 8f73b2a commit dd1752f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/ipfs/ipfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (

const (
// MaxFileSizeBytes is the maximum size of a file to be published to IPFS
MaxFileSizeBytes = 1024 * 1024 * 100 // 100 MB
MaxFileSizeBytes = 1024 * 1024 * 1024 // 1 GB
// RetrievedFileCacheSize is the maximum number of files to be cached in memory
RetrievedFileCacheSize = 128
)
Expand Down

0 comments on commit dd1752f

Please sign in to comment.