Created
September 16, 2024 12:39
-
-
Save toschdev/c60d73c97290467de0caece499d50b75 to your computer and use it in GitHub Desktop.
Interchain Security, Stop Provider Chain
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Enable strict mode: exit on error, print commands, and treat unset variables as errors. | |
set -eux | |
# Setup Variables | |
# Define paths, binary, and other configuration parameters | |
PROVIDER_BINARY=interchain-security-pd | |
# Terminate any running instances of the blockchain binary | |
killall $PROVIDER_BINARY &> /dev/null || true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment