build oops

This commit is contained in:
Andrew Jackson (Ajax) 2023-09-22 18:08:19 -05:00
parent a888b6320c
commit 632bf15b82

View File

@ -2,9 +2,10 @@ package main
import (
"context"
"crypto/rand"
crand "crypto/rand"
"encoding/json"
"fmt"
"math/rand"
"os"
"golang.org/x/xerrors"
@ -145,7 +146,7 @@ func MakeUnsignedMessageVectors() []vectors.UnsignedMessageVector {
}
params := make([]byte, 32)
rand.Read(params)
crand.Read(params)
msg := &types.Message{
To: to,