Is there an existing issue for this?
- I have searched the existing issues
Current behaviour
I’m running a regtest chain in my CI\CD for some tests, occasionally, I will see my bitcoind fail with an assertion
Assertion failed: pindexPrev && pindexPrev == chainstate.m_chain.Tip() (validation.cpp: TestBlockValidity: 4338)
Expected behaviour
The node to be stable and not crash
Steps to reproduce
I don’t have steps to reproduce, this happens very rearily as part of our CI\CD that runs a simple regtest chains, mines a few blocks, makes a few transactions and managing a few wallets
Relevant log output
No response
How did you obtain Bitcoin Core
Package manager
What version of Bitcoin Core are you using?
27.0-r1
Operating system and version
alpine:3.18
Machine specifications
I’m building an alpine image version 3.18 and installing bitcoin in my docker file as such
0RUN apk add bitcoin=25.1-r1 --repository=https://dl-cdn.alpinelinux.org/alpine/v3.19/community
1RUN apk add bitcoin-cli
since 25 is now a bit old, I tried bumping the version, so I’m now running
0RUN apk add bitcoin=25.1-r1 --repository=https://dl-cdn.alpinelinux.org/alpine/v3.19/community
1RUN apk add bitcoin-cli
but the issue persisted