-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransactions.go
71 lines (52 loc) · 1.33 KB
/
transactions.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package goiw
import (
"github.com/willf/pad"
)
type Transactions struct {
Hashes []string `json:"hashes"`
}
func (c *Client) FindTransactions(bundles, addresses, tags, approvees []string) (Transactions, error) {
for i, b := range bundles {
bundles[i] = pad.Right(b, 81, "9")
}
command := Command{
Command: "getTransactions",
Bundles: bundles,
Addresses: addresses,
Tags: tags,
Approvees: approvees,
}
transactions := Transactions{}
err := c.do(command, &transactions)
return transactions, err
}
type TransactionsToApprove struct {
TrunkTransaction string `json:"trunkTransaction"`
BranchTransaction string `json:"branchTransaction"`
Duration int `json:"duration"`
}
func (c *Client) GetTransactionsToApprove(depth int) (TransactionsToApprove, error) {
command := Command{
Command: "getTransactionsToApprove",
Depth: depth,
}
transactions := TransactionsToApprove{}
err := c.do(command, &transactions)
return transactions, err
}
func (c *Client) BroadcastTransactions(trytes []string) error {
command := Command{
Command: "broadcastTransactions",
Trytes: trytes,
}
err := c.do(command, nil)
return err
}
func (c *Client) StoreTransactions(trytes []string) error {
command := Command{
Command: "storeTransactions",
Trytes: trytes,
}
err := c.do(command, nil)
return err
}