11 lines
222 B
Bash
Executable File
11 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2016-2024 The Hush developers
|
|
# Released under the GPLv3
|
|
|
|
echo "Purging $1"
|
|
|
|
rm -rf ~/.hush/$1/chainstate
|
|
rm -rf ~/.hush/$1/database
|
|
rm -rf ~/.hush/$1/blocks
|
|
rm -rf ~/.hush/$1/hushstate
|