blockchain-poc/utils.go

18 lines
275 B
Go
Raw Normal View History

2017-09-22 16:48:05 +00:00
package main
import (
"bytes"
"encoding/binary"
"log"
)
// IntToHex converts an int64 to a byte array
func IntToHex(num int64) []byte {
buf := new(bytes.Buffer)
err := binary.Write(buf, binary.BigEndian, num)
if err != nil {
log.Panic(err)
}
return buf.Bytes()
}