Removed pruning, added git to dev shell

This commit is contained in:
jeirmeister 2025-08-01 11:46:30 -07:00
parent 1e77184b55
commit 4aa1f8bd61
2 changed files with 2 additions and 1 deletions

View file

@ -24,7 +24,7 @@
dataDirReadableByGroup = false; dataDirReadableByGroup = false;
disablewallet = null; disablewallet = null;
dbCache = 4000; dbCache = 4000;
prune = 10000; # prune = 10000;
txindex = true; txindex = true;
zmqpubrawblock = "tcp://0.0.0.0:28332"; zmqpubrawblock = "tcp://0.0.0.0:28332";
zmqpubrawtx = "tcp://0.0.0.0:28333"; zmqpubrawtx = "tcp://0.0.0.0:28333";

View file

@ -8,6 +8,7 @@ pkgs.mkShell {
bitcoin # Bitcoin Core CLI tools (bitcoind, bitcoin-cli) bitcoin # Bitcoin Core CLI tools (bitcoind, bitcoin-cli)
curl # For HTTP API testing curl # For HTTP API testing
jq # For manipulating test output jq # For manipulating test output
git
# dotnet-sdk # IF you develop/plugins for NBXplorer, uncomment this # dotnet-sdk # IF you develop/plugins for NBXplorer, uncomment this
]; ];