mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-12-26 00:25:17 +00:00
fix: nil dereference
This commit is contained in:
parent
ff8af1a173
commit
5e2c944246
@ -36,5 +36,5 @@ func FormatVersion(version []byte) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func GetPatchNumber() byte {
|
func GetPatchNumber() byte {
|
||||||
return 0x06
|
return 0x07
|
||||||
}
|
}
|
||||||
|
@ -261,6 +261,7 @@ func NewTokenExecutionEngine(
|
|||||||
proof = append(proof, input...)
|
proof = append(proof, input...)
|
||||||
proof = binary.BigEndian.AppendUint64(proof, uint64(len(output)))
|
proof = binary.BigEndian.AppendUint64(proof, uint64(len(output)))
|
||||||
proof = append(proof, output...)
|
proof = append(proof, output...)
|
||||||
|
announce.Announce.InitialProof = &protobufs.MintCoinRequest{}
|
||||||
announce.Announce.InitialProof.Proofs = [][]byte{
|
announce.Announce.InitialProof.Proofs = [][]byte{
|
||||||
[]byte("pre-dusk"),
|
[]byte("pre-dusk"),
|
||||||
make([]byte, 32),
|
make([]byte, 32),
|
||||||
|
Loading…
Reference in New Issue
Block a user