mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-12 00:19:15 +00:00
Fix mempool on 32-bit
This commit is contained in:
parent
b73cecd128
commit
fc61e0caaf
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user