From d6be7cb8bbbef434b890a19da06bc57634fe016d Mon Sep 17 00:00:00 2001 From: Aaron Campbell Date: Thu, 22 Aug 2019 08:50:32 -0300 Subject: [PATCH] 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. --- rpctest/votingwallet.go | 1 - 1 file changed, 1 deletion(-) diff --git a/rpctest/votingwallet.go b/rpctest/votingwallet.go index e5da4de7..47871eea 100644 --- a/rpctest/votingwallet.go +++ b/rpctest/votingwallet.go @@ -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