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

Correct print output #2019

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions tools/faucet/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
if err != nil {
panic(err)
}
fmt.Printf("💡 Faucet started - visit http://%s/viewingkeys/ to generate an ephemeral viewing key.\n", cfg.Host)

fmt.Printf("💡 Faucet started on http://%s:%d \n", cfg.Host, cfg.HTTPPort)

Check failure on line 33 in tools/faucet/cmd/main.go

View workflow job for this annotation

GitHub Actions / lint

File is not `goimports`-ed (goimports)
// Create a channel to receive signals
signalCh := make(chan os.Signal, 1)

Expand Down
Loading