Skip to content

Commit

Permalink
log err
Browse files Browse the repository at this point in the history
  • Loading branch information
Lazar955 committed Nov 8, 2024
1 parent 90509ac commit c68c286
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion harness/btcstaker.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ func (s *BTCStaker) runForever(ctx context.Context, stakerAddress btcutil.Addres
fmt.Printf("🚫 Err getting staking params %v\n", err)
continue
}
_ = s.buildAndSendStakingTransaction(ctx, stakerAddress, stakerPk, &paramsResp.Params)
err = s.buildAndSendStakingTransaction(ctx, stakerAddress, stakerPk, &paramsResp.Params)
if err != nil {
fmt.Printf("🚫 Err in BTC Staker: %v\n", err)
}
}
}
}
Expand Down

0 comments on commit c68c286

Please sign in to comment.