We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce:
start hsd with custom ports: $ hsd --network=regtest --memory=true --http-port=10000 --wallet-http-port=20000
$ hsd --network=regtest --memory=true --http-port=10000 --wallet-http-port=20000
set environment variables:
$ export HSD_HTTP_PORT=10000 $ export HSD_WALLET_HTTP_PORT=20000
make client calls:
$ hsd-cli info # success $ hsw-cli wallets # fails, gets redirected to NODE HTTP PORT (10000) # hsw-cli wallets --http-port=20000 # success
so, hsw-cli might want to filter environment variablels to correctly parse WALLET_HTTP_PORT
hsw-cli
WALLET_HTTP_PORT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce:
start hsd with custom ports:
$ hsd --network=regtest --memory=true --http-port=10000 --wallet-http-port=20000
set environment variables:
make client calls:
so,
hsw-cli
might want to filter environment variablels to correctly parseWALLET_HTTP_PORT
The text was updated successfully, but these errors were encountered: