chainntnfs: remove unnecessary print statement in tests

This commit is contained in:
Olaoluwa Osuntokun 2016-09-13 15:33:28 -07:00
parent 49ce1040d4
commit 112ad616f6
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2

@ -2,7 +2,6 @@ package chainntnfs_test
import ( import (
"bytes" "bytes"
"fmt"
"log" "log"
"sync" "sync"
"testing" "testing"
@ -359,7 +358,6 @@ func testMultiClientConfirmationNotification(miner *rpctest.Harness,
wg.Add(1) wg.Add(1)
go func() { go func() {
<-confClient.Confirmed <-confClient.Confirmed
fmt.Println(i)
wg.Done() wg.Done()
}() }()
} }