You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not possible to use that module as it uses os.Exit(...) on failure which causes application to exit even if coindesk logic run inside the go-routine. I'd recommend to use panic() instead as it could be handled with recover().
The text was updated successfully, but these errors were encountered:
It's not possible to use that module as it uses
os.Exit(...)
on failure which causes application to exit even if coindesk logic run inside the go-routine. I'd recommend to usepanic()
instead as it could be handled withrecover()
.The text was updated successfully, but these errors were encountered: