-
Notifications
You must be signed in to change notification settings - Fork 127
Misc Ports from #136 and #159 #171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Not shutting down properly (seem to be missing messages somewhere): |
|
If same conn submits a duplicate tx, we will now only send 1 message back. |
| ContinuousProfilerDir string `json:"continuousProfilerDir"` // "*" is replaced with rand int | ||
|
|
||
| // Streaming Ports | ||
| StreamingPort uint16 `json:"streamingPort"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should've been removed in WS port PR
|
|
||
| type WebSocketClient struct { | ||
| conn *websocket.Conn | ||
| wl sync.Mutex |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed a panic found in testing
| PongWait = 60 * time.Second | ||
| PingPeriod = (PongWait * 9) / 10 | ||
| MaxMessageSize = 10 * units.KiB // bytes | ||
| MaxMessageSize = consts.NetworkSizeLimit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensured can submit full txs
Related: #136
Related: #159