Skip to content
New issue

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

Print Electrum URL in the logs #3596

Merged
merged 5 commits into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/bitcoin/electrum/electrum.go
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,8 @@ func (c *Connection) verifyServer() error {
}

logger.Infof(
"connected to electrum server [version: [%s], protocol: [%s]]",
"connected to [%s] electrum server [version: [%s], protocol: [%s]]",
c.config.URL,
nkuba marked this conversation as resolved.
Show resolved Hide resolved
server.version,
server.protocol,
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OPENZEPPELIN_MANIFEST=".openzeppelin/unknown-*.json"
# This number should be no less than the highest index assigned to a named account
# specified in `hardhat.config.ts` configs across all the used projects. Note that
# account indices start from 0.
REQUIRED_ACCOUNTS_NUMBER=8
REQUIRED_ACCOUNTS_NUMBER=11

# Defaults, can be overwritten by env variables/input parameters
NETWORK_DEFAULT="development"
Expand Down