mirror of
https://github.com/romanz/electrs.git
synced 2025-02-23 14:50:45 +01:00
15 lines
269 B
Bash
Executable file
15 lines
269 B
Bash
Executable file
#!/bin/bash
|
|
set -eux
|
|
cd `dirname $0`
|
|
|
|
cargo fmt --all
|
|
cargo build --all --release
|
|
|
|
NETWORK=$1
|
|
shift
|
|
|
|
CMD="target/release/sync --network $NETWORK --db-dir ./db2 --daemon-dir $HOME/.bitcoin"
|
|
export RUST_LOG=${RUST_LOG-info}
|
|
$CMD --ignore-mempool $*
|
|
|
|
# use SIGINT to quit
|