-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction_output.go
57 lines (44 loc) · 1.03 KB
/
transaction_output.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main
import (
"bytes"
"encoding/gob"
)
type TXOutput struct {
Value int
PubKeyHash []byte
}
// Let `address` lock `output`
func (out *TXOutput) Lock(address []byte) {
pubKeyHash := Base58Decode(address)
pubKeyHash = pubKeyHash[1 : len(pubKeyHash)-4]
out.PubKeyHash = pubKeyHash
}
// check if `pubKeyHash` could unlock `out`
func (out *TXOutput) IsLockedWithKey(pubKeyHash []byte) bool {
return bytes.Compare(out.PubKeyHash, pubKeyHash) == 0
}
// create a new TXOutput
func NewTXOutput(value int, addr string) *TXOutput {
txo := &TXOutput{value, nil}
txo.Lock([]byte(addr))
return txo
}
type TXOutputs struct {
Outputs []TXOutput
}
// serialize TXOutputs
func (outs TXOutputs) Serialize() []byte {
var buff bytes.Buffer
enc := gob.NewEncoder(&buff)
err := enc.Encode(outs)
logErr(err)
return buff.Bytes()
}
// deserialize TXOutputs
func DeserializeOutputs(data []byte) TXOutputs {
var outputs TXOutputs
dec := gob.NewDecoder(bytes.NewReader(data))
err := dec.Decode(&outputs)
logErr(err)
return outputs
}