We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dfb291 commit f6ff2f0Copy full SHA for f6ff2f0
cmd/fund/fund.go
@@ -69,7 +69,7 @@ func runFunding(ctx context.Context) error {
69
// Save private and public keys to a file if we have private keys.
70
if len(privateKeys) > 0 {
71
go func() {
72
- if err := saveToFile(params.OutputFile, privateKeys); err != nil {
+ if err = saveToFile(params.OutputFile, privateKeys); err != nil {
73
log.Error().Err(err).Msg("Unable to save keys to file")
74
panic(err)
75
}
0 commit comments