File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ build-kernel:
1818 -DBUILD_BITCOIN_BIN=OFF \
1919 -DBUILD_DAEMON=OFF \
2020 -DBUILD_UTIL_CHAINSTATE=OFF \
21- -DBUILD_CLI=OFF && \
21+ -DBUILD_CLI=OFF \
22+ -DENABLE_IPC=OFF && \
2223 cmake --build build --target bitcoinkernel -j $(shell nproc 2>/dev/null || echo 4)
2324
2425build :
Original file line number Diff line number Diff line change @@ -213,7 +213,10 @@ func (s *ChainstateManagerTestSuite) Setup(t *testing.T) {
213213 opts .SetBlockTreeDBInMemory (true )
214214 opts .SetChainstateDBInMemory (true )
215215 // Wipe both databases to enable proper initialization
216- opts .SetWipeDBs (true , true )
216+ err = opts .SetWipeDBs (true , true )
217+ if err != nil {
218+ t .Fatalf ("SetWipeDBs() error = %v" , err )
219+ }
217220
218221 // Create chainstate manager
219222 manager , err := NewChainstateManager (opts )
You can’t perform that action at this time.
0 commit comments