Skip to content
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

fix connection goes silent #17

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

new version https://github.com/mussonero/binance-cxx-api-v2


```

⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⠁⠀⠉⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿
Expand Down
2 changes: 1 addition & 1 deletion include/binance_websocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace binance
public :
static void connect_endpoint(CB user_cb, const char* path);
static void init();
static void enter_event_loop(std::chrono::hours hours = std::chrono::hours(24));
static void enter_event_loop(const std::chrono::hours &hours = std::chrono::hours(24));
};
}

Expand Down
Loading