mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-04 18:22:57 +02:00
clusterlin: avoid depgraph argument in SanityCheck (cleanup)
Since the deterministic ordering change, SpanningForestState holds a reference to the DepGraph it is linearizing. So this means we do not need to pass it to SanityCheck() as an argument anymore.
This commit is contained in:
@@ -919,7 +919,7 @@ FUZZ_TARGET(clusterlin_sfl)
|
||||
if (rng.randbits(4) == 0) {
|
||||
// Perform sanity checks from time to time (too computationally expensive to do after
|
||||
// every step).
|
||||
sfl.SanityCheck(depgraph);
|
||||
sfl.SanityCheck();
|
||||
}
|
||||
auto diagram = sfl.GetDiagram();
|
||||
if (rng.randbits(4) == 0) {
|
||||
|
||||
Reference in New Issue
Block a user