1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package sdkstruct
|
| // SDKInfo db
| type SDKInfo struct {
| IpcID string
| SdkType string
| }
|
| // MsgSDK sdk msg
| type MsgSDK struct {
| // protomsg.SdkMessage
| MsgData []byte
| // all sdk count
| SdkCount int
| // current sdk index
| SdkIndex int
| // current sdk result len
| SdkDataLen int
| }
|
|