We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 695c22a commit 058bfc3Copy full SHA for 058bfc3
thirdparty/testutil/gen.go
@@ -9,6 +9,7 @@ import (
9
"testing"
10
11
u "gx/ipfs/Qmb912gdngC1UWwTkhuW8knyRbcWeu5kqkxBpveLmW8bSr/go-ipfs-util"
12
+ cid "gx/ipfs/QmcTcsTvfaeEBRFo1TkFgT8sRmgi1n1LTZpecfVP8fzpGD/go-cid"
13
peer "gx/ipfs/QmfMmLGoKzCHDN7cGgk64PJr4iipzidDRME8HABSJqvmhC/go-libp2p-peer"
14
ci "gx/ipfs/QmfWDLQjGjVe4fr5CoztYW2DYYjRysMJrFe1RCsXLPTf46/go-libp2p-crypto"
15
@@ -50,6 +51,14 @@ func RandPeerID() (peer.ID, error) {
50
51
return peer.ID(h), nil
52
}
53
54
+func RandCidV0() (*cid.Cid, error) {
55
+ buf := make([]byte, 16)
56
+ if _, err := io.ReadFull(u.NewTimeSeededRand(), buf); err != nil {
57
+ return &cid.Cid{}, err
58
+ }
59
+ return cid.NewCidV0(buf), nil
60
+}
61
+
62
func RandPeerIDFatal(t testing.TB) peer.ID {
63
p, err := RandPeerID()
64
if err != nil {
0 commit comments