14 lines
166 B
Go
14 lines
166 B
Go
package tron
|
|
|
|
// 区块
|
|
// {
|
|
// "blockID":,
|
|
// "block_header": map,
|
|
// "transactions": map,
|
|
//}
|
|
|
|
type TRONNode struct {
|
|
decodeKey string
|
|
ConfirmHeight uint64
|
|
}
|