src/net.cpp | What does "nUnkBias" define/mean

0

net.cpp for example:

// use an nUnkBias between 10 (no outgoing connections) and 90 (8 outgoing connections) CAddress addr = addrman.Select(10 + min(nOutbound,8)*10);

What does this line of code exactly mean/do?

Aurigae

Posted 2016-11-13T13:55:12.097

Reputation: 633

1

F.Y.I.: this code has been removed (https://github.com/bitcoin/bitcoin/pull/5941) from bitcoin-core.

Jonas Schnelli 2016-11-13T14:27:43.610

thx for info, found itAurigae 2016-11-13T14:57:56.783

No answers