forked from bitcoinafterlife/bal-server
- parse_request_transactions now skips txs without willexecutor output instead of returning an error that aborts the entire batch - returns 'error' (400) only when NO txs are valid - all HTTP error bodies replaced with generic 'error' to avoid leaking internal details
15 lines
588 B
Bash
15 lines
588 B
Bash
RUST_LOG=trace
|
|
|
|
export BAL_PUSHER_DB_FILE="$(pwd)/bal.db"
|
|
#export BAL_PUSHER_BITCOIN_COOKIE_FILE=/~/.bitcoin/.cookie
|
|
#export BAL_PUSHER_REGTEST_COOKIE_FILE=/~/.bitcoin/regtest/.cookie
|
|
#export BAL_PUSHER_TESTNET_COOKIE_FILE=/~/.bitcoin/testnet3/.cookie
|
|
#export BAL_PUSHER_SIGNET_COOKIE_FILE=/~/.bitcoin/signet/.cookie
|
|
|
|
export BAL_PUSHER_REGTEST_ZMQ_HASHBLOCK=tcp://127.0.0.1:18443
|
|
export BAL_PUSHER_SEND_STATS=true
|
|
export WELIST_SERVER_URL=http://localhost:8085
|
|
export BAL_SERVER_URL="http://127.0.0.1:9133"
|
|
export SSL_KEY_PATH="$(pwd)/private_key.pem"
|
|
cargo run --bin=bal-pusher regtest
|