rpctest: Remove leftover debug print.

A proper error is message logged on the very next line, so there's
no reason to keep this extra Println call.
This commit is contained in:
Aaron Campbell 2019-08-22 08:50:32 -03:00 committed by Dave Collins
parent 4891191de3
commit d6be7cb8bb

View File

@ -387,7 +387,6 @@ func (w *VotingWallet) handleBlockConnectedNtfn(ntfn *blockConnectedNtfn) {
// Purchase TicketsPerBlock tickets.
nbTickets := int(w.hn.ActiveNet.TicketsPerBlock)
if len(w.utxos) < nbTickets {
fmt.Println("errrr len utxos < nbTickets")
w.logError(fmt.Errorf("number of available utxos (%d) less than "+
"number of tickets to purchase (%d)", len(w.utxos), nbTickets))
return