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