From 8a9904dbe694c17d353a6f40bf7d1f1def59c70b Mon Sep 17 00:00:00 2001 From: wiz Date: Wed, 1 Jul 2026 15:09:30 +0900 Subject: [PATCH] ops: Enable -DWITH_ZMQ=ON when building Bitcoin Core --- production/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production/install b/production/install index d97fd39d7..dcce38e1c 100755 --- a/production/install +++ b/production/install @@ -1162,7 +1162,7 @@ if [ "${BITCOIN_INSTALL}" = ON ];then # use cmake if > v28 if [ "${BITCOIN_LATEST_RELEASE:1:2}" -gt "28" ];then - osSudo "${BITCOIN_USER}" sh -c "cd ${BITCOIN_REPO_NAME} && cmake -B build -DWITH_GUI=OFF -DENABLE_IPC=OFF -DENABLE_WALLET=OFF -DBUILD_BITCOIN_TESTS=OFF" + osSudo "${BITCOIN_USER}" sh -c "cd ${BITCOIN_REPO_NAME} && cmake -B build -DWITH_GUI=OFF -DWITH_ZMQ=ON -DENABLE_IPC=OFF -DENABLE_WALLET=OFF -DBUILD_BITCOIN_TESTS=OFF" osSudo "${BITCOIN_USER}" sh -c "cd ${BITCOIN_REPO_NAME} && cmake --build build -j${NPROC}" echo "[*] Installing Bitcoin binaries into OS"