You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #2125 a new config was added docs/stellar-core_example_validators.cfg which, if you run stellar-core with it, fails assertion isQuorumSetSane.
This is because we defined quorum sets as sane only if they're 3 nesting levels or shallower, and the new auto-config code groups nodes by homeDomain before putting them into nesting levels. This makes for a 4-level nesting overall, not 3.
A trivial fix for this is to change the test in QuorumSanityChecker::checkSanity from depth > 2 to depth > 3 but I'm not sure if that's actually the semantics we want.
The text was updated successfully, but these errors were encountered:
In #2125 a new config was added docs/stellar-core_example_validators.cfg which, if you run stellar-core with it, fails assertion
isQuorumSetSane
.This is because we defined quorum sets as sane only if they're 3 nesting levels or shallower, and the new auto-config code groups nodes by homeDomain before putting them into nesting levels. This makes for a 4-level nesting overall, not 3.
A trivial fix for this is to change the test in QuorumSanityChecker::checkSanity from
depth > 2
todepth > 3
but I'm not sure if that's actually the semantics we want.The text was updated successfully, but these errors were encountered: