Commit f0c4a2c1 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

util: remove broken rand

parent e3ac58db
......@@ -12,7 +12,7 @@ import (
func randNode() (*mdag.Node, util.Key) {
nd := new(mdag.Node)
nd.Data = make([]byte, 32)
util.NewFastRand().Read(nd.Data)
util.NewTimeSeededRand().Read(nd.Data)
k, _ := nd.Key()
return nd, k
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment