Skip to content

Commit

Permalink
Merge pull request #379 from justusranvier/develop
Browse files Browse the repository at this point in the history
Raise MaxCFilterDataSize to 2 MiB
  • Loading branch information
cpacia authored Jul 6, 2020
2 parents 6d3aeb7 + 900986a commit eed4a52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wire/msgcfilter.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const (

const (
// MaxCFilterDataSize is the maximum byte size of a committed filter.
// The maximum size is currently defined as 256KiB.
MaxCFilterDataSize = 256 * 1024
// The maximum size is currently defined as 2MiB.
MaxCFilterDataSize = 2 * 1024 * 1024
)

// MsgCFilter implements the Message interface and represents a bitcoin cfilter
Expand Down

0 comments on commit eed4a52

Please sign in to comment.