The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/p2p/discovery/discovery_test.go

21 lines
317 B

package discovery
// TODO: test this module
import (
"context"
"testing"
"github.com/libp2p/go-libp2p"
)
func TestNewDHTDiscovery(t *testing.T) {
host, err := libp2p.New(context.Background())
if err != nil {
t.Fatal(err)
}
_, err = NewDHTDiscovery(host, DHTConfig{})
if err != nil {
t.Fatal(err)
}
}