Fix mempool on 32-bit

This commit is contained in:
Taylor Helsper 2022-06-29 21:59:24 -05:00
parent b73cecd128
commit fc61e0caaf
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,8 @@ differences are:
- BTC Pay Server versions are locked to v1.3.x - BTC Pay Server versions are locked to v1.3.x
- grpcio is locked to v1.40.0 due to GLIBC compatibility - grpcio is locked to v1.40.0 due to GLIBC compatibility
- LNDg requires a custom grpcio version, may cause issues - LNDg requires a custom grpcio version, may cause issues
- Dojo is locked to v1.14.0
- Mempool is locked to v2.3.1
## Testnet Toggle ## Testnet Toggle
- Testnet can be enabled via the settings page. This is a great way to test various Bitcoin and Lightning applications. However, not all apps support testnet yet or have not been integrated within myNode to work on testnet. The following apps - Testnet can be enabled via the settings page. This is a great way to test various Bitcoin and Lightning applications. However, not all apps support testnet yet or have not been integrated within myNode to work on testnet. The following apps

View File

@ -54,6 +54,9 @@ ELECTRS_VERSION_FILE=/home/bitcoin/.mynode/electrs_version
ELECTRS_LATEST_VERSION_FILE=/home/bitcoin/.mynode/electrs_version_latest ELECTRS_LATEST_VERSION_FILE=/home/bitcoin/.mynode/electrs_version_latest
MEMPOOL_VERSION="v2.4.0" MEMPOOL_VERSION="v2.4.0"
if [ "$IS_32_BIT" = "1" ]; then
MEMPOOL_VERSION="v2.3.1"
fi
MEMPOOL_VERSION=$(get_app_version "$MEMPOOL_VERSION" "mempool") MEMPOOL_VERSION=$(get_app_version "$MEMPOOL_VERSION" "mempool")
MEMPOOL_VERSION_FILE=/mnt/hdd/mynode/settings/mempool_version MEMPOOL_VERSION_FILE=/mnt/hdd/mynode/settings/mempool_version
MEMPOOL_LATEST_VERSION_FILE=/mnt/hdd/mynode/settings/mempool_version_latest MEMPOOL_LATEST_VERSION_FILE=/mnt/hdd/mynode/settings/mempool_version_latest