Merge pull request #1897 from oxen-io/clearnet

fix onion path rebuild when snodes count is 12
pull/1998/head v1.7.0
Audric Ackermann 4 years ago committed by GitHub
commit 9a5c72c898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -425,7 +425,7 @@ async function buildNewOnionPathsWorker() {
); );
// TODO: select one guard node and 2 other nodes randomly // TODO: select one guard node and 2 other nodes randomly
let otherNodes = _.differenceBy(allNodes, guardNodes, 'pubkey_ed25519'); let otherNodes = _.differenceBy(allNodes, guardNodes, 'pubkey_ed25519');
if (otherNodes.length < SnodePool.minSnodePoolCount) { if (otherNodes.length <= SnodePool.minSnodePoolCount) {
window?.log?.warn( window?.log?.warn(
'LokiSnodeAPI::buildNewOnionPaths - Too few nodes to build an onion path! Refreshing pool and retrying' 'LokiSnodeAPI::buildNewOnionPaths - Too few nodes to build an onion path! Refreshing pool and retrying'
); );

@ -268,7 +268,7 @@ export async function refreshRandomPool(forceRefresh = false): Promise<void> {
if (fetchedFromDb?.length) { if (fetchedFromDb?.length) {
window?.log?.info(`refreshRandomPool: fetched from db ${fetchedFromDb.length} snodes.`); window?.log?.info(`refreshRandomPool: fetched from db ${fetchedFromDb.length} snodes.`);
randomSnodePool = fetchedFromDb; randomSnodePool = fetchedFromDb;
if (randomSnodePool.length < minSnodePoolCount) { if (randomSnodePool.length <= minSnodePoolCount) {
window?.log?.warn('refreshRandomPool: not enough snodes in db, going to fetch from seed'); window?.log?.warn('refreshRandomPool: not enough snodes in db, going to fetch from seed');
} else { } else {
return; return;
@ -279,9 +279,9 @@ export async function refreshRandomPool(forceRefresh = false): Promise<void> {
} }
// we don't have nodes to fetch the pool from them, so call the seed node instead. // we don't have nodes to fetch the pool from them, so call the seed node instead.
if (randomSnodePool.length < minSnodePoolCount) { if (randomSnodePool.length <= minSnodePoolCount) {
window?.log?.info( window?.log?.info(
`refreshRandomPool: NOT enough snodes to fetch from them ${randomSnodePool.length} < ${minSnodePoolCount}, so falling back to seedNodes ${seedNodes?.length}` `refreshRandomPool: NOT enough snodes to fetch from them ${randomSnodePool.length} <= ${minSnodePoolCount}, so falling back to seedNodes ${seedNodes?.length}`
); );
randomSnodePool = await exports.refreshRandomPoolDetail(seedNodes); randomSnodePool = await exports.refreshRandomPoolDetail(seedNodes);

@ -67,7 +67,7 @@ describe('OnionPathsErrors', () => {
beforeEach(async () => { beforeEach(async () => {
guardPubkeys = TestUtils.generateFakePubKeys(3).map(n => n.key); guardPubkeys = TestUtils.generateFakePubKeys(3).map(n => n.key);
otherNodesPubkeys = TestUtils.generateFakePubKeys(12).map(n => n.key); otherNodesPubkeys = TestUtils.generateFakePubKeys(13).map(n => n.key);
SNodeAPI.Onions.resetSnodeFailureCount(); SNodeAPI.Onions.resetSnodeFailureCount();

Loading…
Cancel
Save