GetConfig 通过seq以及title获取对应平行连的交易
()
| 1103 | |
| 1104 | //GetConfig 通过seq以及title获取对应平行连的交易 |
| 1105 | func (q *QueueProtocol) GetConfig() *types.Chain33Config { |
| 1106 | if q.client == nil { |
| 1107 | panic("client is nil, can not get Chain33Config") |
| 1108 | } |
| 1109 | cfg := q.client.GetConfig() |
| 1110 | if cfg == nil { |
| 1111 | panic("Chain33Config is nil") |
| 1112 | } |
| 1113 | return cfg |
| 1114 | } |
| 1115 | |
| 1116 | // SendDelayTx send delay transaction to mempool |
| 1117 | func (q *QueueProtocol) SendDelayTx(param *types.DelayTx, waitReply bool) (*types.Reply, error) { |