From cb8751d5b8ddafafdce2225c5e6be628468125b9 Mon Sep 17 00:00:00 2001 From: Scott Rodgers Date: Sun, 13 Dec 2020 16:36:05 -0500 Subject: [PATCH] Added missing argument to readme websocket example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37872be..12d0c56 100644 --- a/README.md +++ b/README.md @@ -296,7 +296,7 @@ BTC_collection = db.BTC_collection # instantiate a WebsocketClient instance, with a Mongo collection as a parameter wsClient = cbpro.WebsocketClient(url="wss://ws-feed.pro.coinbase.com", products="BTC-USD", - mongo_collection=BTC_collection, should_print=False) + channels=["ticker"], mongo_collection=BTC_collection, should_print=False) wsClient.start() ```