aboutsummaryrefslogtreecommitdiff
path: root/test/lint
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2022-02-16 15:23:11 -0500
committerCarl Dong <contact@carldong.me>2022-05-23 14:53:35 -0400
commitf1006875665ffe8ff5da8185effe25b860743b4e (patch)
tree92c88cfc60bd57518ab19881791010a9ba3e9c4f /test/lint
parentfaa52387e8e4856445b1cfc9b5e072ce8f690f36 (diff)
downloadbitcoin-f1006875665ffe8ff5da8185effe25b860743b4e.tar.xz
kernel: Use ComputeUTXOStats in validation
This is the "fruit of our labor" for this patchset. ChainstateManager::PopulateAndValidateSnapshot can now directly call ComputeUTXOStats(...). Our consensus engine is now fully decoupled from all indices. See the src/Makefile.am for some satisfying removals.
Diffstat (limited to 'test/lint')
-rwxr-xr-xtest/lint/lint-circular-dependencies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lint/lint-circular-dependencies.py b/test/lint/lint-circular-dependencies.py
index 3b328501cf..5d157eb4b1 100755
--- a/test/lint/lint-circular-dependencies.py
+++ b/test/lint/lint-circular-dependencies.py
@@ -21,7 +21,7 @@ EXPECTED_CIRCULAR_DEPENDENCIES = (
"qt/transactiontablemodel -> qt/walletmodel -> qt/transactiontablemodel",
"wallet/fees -> wallet/wallet -> wallet/fees",
"wallet/wallet -> wallet/walletdb -> wallet/wallet",
- "node/coinstats -> validation -> node/coinstats",
+ "kernel/coinstats -> validation -> kernel/coinstats",
)
CODE_DIR = "src"