blockchain-poc/utils.go
Brian Buller 72004f2396 Step 2:
- Proof of work established
2017-09-22 11:48:05 -05:00

18 lines
275 B
Go

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()
}