1// Copyright (C) 2019 Storj Labs, Inc.
2// See LICENSE for copying information.
3
4package trust_test
5
6import (
7	"storj.io/common/testrand"
8	"storj.io/storj/storagenode/trust"
9)
10
11func makeSatelliteURL(host string) trust.SatelliteURL {
12	return trust.SatelliteURL{
13		ID:   testrand.NodeID(),
14		Host: host,
15		Port: 7777,
16	}
17}
18