Esempio n. 1
0
func Startup() {

	// Startup shared functionality.
	shared.Startup()

	// Start consensus protocol handling.
	consensus.Startup()
}
Esempio n. 2
0
func Startup() {

	// Startup shared functionality.
	shared.Startup()

	// Startup handling of relay protocol connections.
	relay.Startup()

	// Startup handling of client protocol connections.
	listener.Startup()
}