Skip to content

Commit

Permalink
Merge pull request #1 from jotto/increase-frame-size
Browse files Browse the repository at this point in the history
Increase websocket frame size (from erigon rpc client)
  • Loading branch information
jotto authored Mar 14, 2023
2 parents eca3d39 + 7390d6d commit 99919e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
wsPingInterval = 30 * time.Second
wsPingWriteTimeout = 5 * time.Second
wsPongTimeout = 30 * time.Second
wsMessageSizeLimit = 15 * 1024 * 1024
wsMessageSizeLimit = 32 * 1024 * 1024
)

var wsBufferPool = new(sync.Pool)
Expand Down

0 comments on commit 99919e9

Please sign in to comment.