We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a26bee commit 83bf49dCopy full SHA for 83bf49d
contrib/run-bitcoind.sh
@@ -21,6 +21,7 @@ COMMAND
21
22
- all Start all bitcoind versions defined in the config file.
23
- start [VERSION_ALIAS] Start bitcoind nodes for the specified version alias (default: v22).
24
+ - run [VERSION_ALIAS] Alias for `start [VERSION_ALIAS]`. Provided for ergonomic compatibility.
25
- stop Kill all bitcoind nodes and clean up test directories.
26
27
CONFIGURATION
@@ -61,7 +62,7 @@ main() {
61
62
fi
63
64
case $cmd in
- all|start)
65
+ all|start|run)
66
# Config loading logic
67
local config_file=${RUN_BITCOIND_CONF:-}
68
@@ -110,7 +111,7 @@ main() {
110
111
done
112
;;
113
- start)
114
+ start|run)
115
if [ -z "$version" ]; then
116
version="v22" # Default version
117
0 commit comments