We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8638b40 commit 6113e95Copy full SHA for 6113e95
Makefile
@@ -1,11 +1,11 @@
1
GOBASE := $(shell pwd)
2
GOBIN := $(GOBASE)/bin
3
4
-test: test-networks
+test: test-network
5
go test -v ./...
6
7
-test-networks:
8
- cd ./networks; \
+test-network:
+ cd ./network; \
9
go test -v ./...; \
10
11
generate-coins:
types/tx.go
@@ -98,6 +98,8 @@ type (
98
Outputs []TxOutput `json:"outputs,omitempty"`
99
// Transaction Direction
100
Direction Direction `json:"direction,omitempty"`
101
+ // TokenTransfers
102
+ TokenTransfers []TokenTransfer `json:"token_transfers,omitempty"`
103
// Meta data object
104
Memo string `json:"memo"`
105
Meta interface{} `json:"metadata"`
0 commit comments