mirror of
https://github.com/trezor/blockbook.git
synced 2026-03-06 15:48:01 +01:00
9 lines
167 B
Bash
Executable File
9 lines
167 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
TARGET_DIR=~/.bitcoin/regtest
|
|
|
|
echo "Removing block and chainstate data in $TARGET_DIR..."
|
|
rm -rf $TARGET_DIR/blocks $TARGET_DIR/chainstate
|