Commit d457a118 authored by Felix Lange's avatar Felix Lange

common: add Hash.Generate

parent 72ab6d32
package common
import "math/big"
import (
"math/big"
"math/rand"
"reflect"
)
const (
hashLength = 32
......@@ -48,6 +52,15 @@ func (h *Hash) Set(other Hash) {
}
}
// Generate implements testing/quick.Generator.
func (h Hash) Generate(rand *rand.Rand, size int) reflect.Value {
m := rand.Intn(len(h))
for i := len(h) - 1; i > m; i-- {
h[i] = byte(rand.Uint32())
}
return reflect.ValueOf(h)
}
/////////// Address
func BytesToAddress(b []byte) Address {
var a Address
......
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