Skip to content

Commit

Permalink
restore default password
Browse files Browse the repository at this point in the history
  • Loading branch information
Ouziel committed Mar 16, 2024
1 parent 40ead2d commit 3b38cff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cd counterparty-cli && pip install -e . && cd ..
- name: Bootstrap testnet database
run: |
counterparty-server --backend-password=rpc --testnet bootstrap
counterparty-server --testnet bootstrap
- name: Run tests
run: |
cd counterparty-lib
Expand Down
2 changes: 1 addition & 1 deletion counterparty-cli/counterpartycli/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
[('--backend-connect',), {'default': 'localhost', 'help': 'the hostname or IP of the backend server'}],
[('--backend-port',), {'type': int, 'help': 'the backend port to connect to'}],
[('--backend-user',), {'default': 'bitcoinrpc', 'help': 'the username used to communicate with backend'}],
[('--backend-password',), {'help': 'the password used to communicate with backend'}],
[('--backend-password',), {'default': 'rpc', 'help': 'the password used to communicate with backend'}],
[('--backend-ssl',), {'action': 'store_true', 'default': False, 'help': 'use SSL to connect to backend (default: false)'}],
[('--backend-ssl-no-verify',), {'action': 'store_true', 'default': False, 'help': 'verify SSL certificate of backend; disallow use of self‐signed certificates (default: true)'}],
[('--backend-poll-interval',), {'type': float, 'default': 0.5, 'help': 'poll interval, in seconds (default: 0.5)'}],
Expand Down

0 comments on commit 3b38cff

Please sign in to comment.