update coin daemon support (XMR, LTC, Geth)

- Monero         v0.18.5.0
- Litecoin Core  v0.21.5.5
- Go-Ethereum    v1.17.4
This commit is contained in:
The MMGen Project 2026-05-17 18:03:36 +00:00
commit eea9195f49
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 5 additions and 5 deletions

View file

@ -151,7 +151,7 @@ class bitcoin_cash_node_daemon(bitcoin_core_daemon):
class litecoin_core_daemon(bitcoin_core_daemon):
# v0.21.2rc5 crashes when mining more than 431 blocks in regtest mode:
# CreateNewBlock: TestBlockValidity failed: bad-txns-vin-empty, Transaction check failed
daemon_data = _dd('Litecoin Core', 210504, '0.21.5.4')
daemon_data = _dd('Litecoin Core', 210505, '0.21.5.5')
exec_fn = 'litecoind'
cli_fn = 'litecoin-cli'
testnet_dir = 'testnet4'

View file

@ -96,7 +96,7 @@ class geth_daemon(ethereum_daemon):
# mempool deadlock in dev mode: "transaction indexing is in progress"
# https://github.com/ethereum/go-ethereum/issues/29475
# offending commit (via git bisect): 0a2f33946b95989e8ce36e72a88138adceab6a23
daemon_data = _dd('Geth', 1017002, '1.17.2')
daemon_data = _dd('Geth', 1017004, '1.17.4')
version_pat = r'Geth/v(\d+)\.(\d+)\.(\d+)'
exec_fn = 'geth'
use_pidfile = False

View file

@ -19,7 +19,7 @@ from ...util import list_gen, die, contains_any
from ...daemon import CoinDaemon, RPCDaemon, _nw, _dd
class monero_daemon(CoinDaemon):
daemon_data = _dd('Monero', 18004006, '0.18.4.6-release')
daemon_data = _dd('Monero', 18005000, '0.18.5.0-release')
networks = ('mainnet', 'testnet')
exec_fn = 'monerod'
testnet_dir = 'stagenet'

View file

@ -2,10 +2,10 @@
pkgs.stdenv.mkDerivation rec {
pname = "litecoin";
version = "v0.21.4";
version = "v0.21.5.5";
src = fetchGit {
url = "https://github.com/litecoin-project/litecoin.git";
# url = /path/to/repo/litecoin-0.21.4.git;
# url = /path/to/repo/litecoin-0.21.5.5.git;
ref = "refs/tags/${version}";
shallow = true;
};