Ejemplo n.º 1
0
func Startup() {

	// Startup shared functionality.
	shared.Startup()

	// Start consensus protocol handling.
	consensus.Startup()
}
Ejemplo 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()
}