update broken ws endpoint
Some checks failed
release / goreleaser (push) Has been cancelled

This commit is contained in:
Gustavo Chain 2023-03-27 11:34:27 +02:00
parent 1e149e7a50
commit fdb8d4002f
No known key found for this signature in database
GPG Key ID: D14717913A9291CE

View File

@ -74,7 +74,7 @@ type Client struct {
func New() (*Client, error) {
dialer := websocket.Dialer{}
conn, _, err := dialer.Dial("wss://mempool.space/ws", nil)
conn, _, err := dialer.Dial("wss://mempool.space/api/v1/ws", nil)
if err != nil {
return nil, err
}