94672cb9cc
* added publish TX for backwards compat. * lowered the prototick for faster block syncing * print useragent on startup * added createMultiRedeemScript for genesis block generation. * building genesis block from scratch. * implemented merkle tree. * starting blockhain with generated genesis hash * Fixed bug in unspent coin state. * fixed broken tests after genesis block. * removed log line. * bumped version -> 0.34.0
22 lines
504 B
Go
22 lines
504 B
Go
package transaction
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"io"
|
|
)
|
|
|
|
// MinerTX represents a miner transaction.
|
|
type MinerTX struct {
|
|
// Random number to avoid hash collision.
|
|
Nonce uint32
|
|
}
|
|
|
|
// DecodeBinary implements the Payload interface.
|
|
func (tx *MinerTX) DecodeBinary(r io.Reader) error {
|
|
return binary.Read(r, binary.LittleEndian, &tx.Nonce)
|
|
}
|
|
|
|
// EncodeBinary implements the Payload interface.
|
|
func (tx *MinerTX) EncodeBinary(w io.Writer) error {
|
|
return binary.Write(w, binary.LittleEndian, tx.Nonce)
|
|
}
|