start method

Future<void> start()

Connects to the hub and registers. Returns once the node is serving.

Implementation

Future<void> start() async {
  await runtime.start();
  logger.info(
    'Storage node started',
    context: {
      'node': nodeId,
      'organizations': organizations.join(','),
      'hub': runtime.config.hubUri.toString(),
    },
  );
}