Skip to content

Commit

Permalink
Merge pull request #12 from aopoltorzhicky/auth-socket
Browse files Browse the repository at this point in the history
Examples fix
  • Loading branch information
aopoltorzhicky authored Oct 9, 2019
2 parents 73b0af8 + 2c2a9f6 commit b8977d8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/book/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func main() {
c := ws.New(false)
c := ws.New()
err := c.Connect()
if err != nil {
log.Fatal("Error connecting to web socket : ", err)
Expand Down
2 changes: 1 addition & 1 deletion examples/candles/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func main() {
c := ws.New(false)
c := ws.New()
err := c.Connect()
if err != nil {
log.Fatal("Error connecting to web socket : ", err)
Expand Down
2 changes: 1 addition & 1 deletion examples/spread/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func main() {
c := ws.New(false)
c := ws.New()
err := c.Connect()
if err != nil {
log.Fatal("Error connecting to web socket : ", err)
Expand Down
2 changes: 1 addition & 1 deletion examples/ticker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

func main() {
c := ws.New(false)
c := ws.New()
err := c.Connect()
if err != nil {
log.Fatal("Error connecting to web socket : ", err)
Expand Down
2 changes: 1 addition & 1 deletion examples/trades/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

func main() {
c := ws.New(false)
c := ws.New()
err := c.Connect()
if err != nil {
log.Fatal("Error connecting to web socket : ", err)
Expand Down

0 comments on commit b8977d8

Please sign in to comment.