mirror of
https://github.com/romanz/electrs.git
synced 2025-02-22 22:36:37 +01:00
9 lines
225 B
Bash
Executable file
9 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
set -eux
|
|
|
|
ADDR=127.0.0.1 # localhost
|
|
PORT=50001 # default mainnet Electrum RPC port
|
|
PROTOCOL=t # TCP (no SSL)
|
|
|
|
# Use only local Electrum server:
|
|
electrum --oneserver --server="$ADDR:$PORT:$PROTOCOL" $*
|