Просмотр исходного кода

Remove exit condition for bond creation during re-learning of previously-known paths

Joseph Henry 5 лет назад
Родитель
Сommit
1dca7b92cf
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      node/BondController.cpp

+ 1 - 1
node/BondController.cpp

@@ -107,7 +107,7 @@ SharedPtr<Bond> BondController::createTransportTriggeredBond(const RuntimeEnviro
 		}
 	}
 	else {
-		fprintf(stderr, "bond already exists for %llx, cannot re-register. exiting\n", identity); exit(0); // TODO: Remove
+		fprintf(stderr, "bond already exists for %llx.\n", identity);
 	}
 	if (bond) {
 		_bonds[identity] = bond;