INNER CODE UNIT · Go

execution

aleibovici/cryptopump · main.go:351

func execution(
	viperData *types.ViperData,
	configData *types.Config,
	sessionData *types.Session,
	marketData *types.Market) {

	var err error /* Error handling */

	/* Connect to Exchange */
	if err = exchange.GetClient(configData, sessionData); err != nil { /* GetClient returns an error if the connection to the exchange is not successful */

		threads.Thread{}.Terminate(sessionData, functions.GetFunctionName()+" - "+err.Error()) /* Terminate ThreadID */

	}

	/* Routine to resume operations */
	var threadIDSessionDB string

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…