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:
parent
e982f7003a
commit
eea9195f49
4 changed files with 5 additions and 5 deletions
|
|
@ -151,7 +151,7 @@ class bitcoin_cash_node_daemon(bitcoin_core_daemon):
|
||||||
class litecoin_core_daemon(bitcoin_core_daemon):
|
class litecoin_core_daemon(bitcoin_core_daemon):
|
||||||
# v0.21.2rc5 crashes when mining more than 431 blocks in regtest mode:
|
# v0.21.2rc5 crashes when mining more than 431 blocks in regtest mode:
|
||||||
# CreateNewBlock: TestBlockValidity failed: bad-txns-vin-empty, Transaction check failed
|
# 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'
|
exec_fn = 'litecoind'
|
||||||
cli_fn = 'litecoin-cli'
|
cli_fn = 'litecoin-cli'
|
||||||
testnet_dir = 'testnet4'
|
testnet_dir = 'testnet4'
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ class geth_daemon(ethereum_daemon):
|
||||||
# mempool deadlock in dev mode: "transaction indexing is in progress"
|
# mempool deadlock in dev mode: "transaction indexing is in progress"
|
||||||
# https://github.com/ethereum/go-ethereum/issues/29475
|
# https://github.com/ethereum/go-ethereum/issues/29475
|
||||||
# offending commit (via git bisect): 0a2f33946b95989e8ce36e72a88138adceab6a23
|
# 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+)'
|
version_pat = r'Geth/v(\d+)\.(\d+)\.(\d+)'
|
||||||
exec_fn = 'geth'
|
exec_fn = 'geth'
|
||||||
use_pidfile = False
|
use_pidfile = False
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ from ...util import list_gen, die, contains_any
|
||||||
from ...daemon import CoinDaemon, RPCDaemon, _nw, _dd
|
from ...daemon import CoinDaemon, RPCDaemon, _nw, _dd
|
||||||
|
|
||||||
class monero_daemon(CoinDaemon):
|
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')
|
networks = ('mainnet', 'testnet')
|
||||||
exec_fn = 'monerod'
|
exec_fn = 'monerod'
|
||||||
testnet_dir = 'stagenet'
|
testnet_dir = 'stagenet'
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
pkgs.stdenv.mkDerivation rec {
|
pkgs.stdenv.mkDerivation rec {
|
||||||
pname = "litecoin";
|
pname = "litecoin";
|
||||||
version = "v0.21.4";
|
version = "v0.21.5.5";
|
||||||
src = fetchGit {
|
src = fetchGit {
|
||||||
url = "https://github.com/litecoin-project/litecoin.git";
|
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}";
|
ref = "refs/tags/${version}";
|
||||||
shallow = true;
|
shallow = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue