14 lines
236 B
Go
14 lines
236 B
Go
package wire
|
|
|
|
import "github.com/Secured-Finance/dione/blockchain/types"
|
|
|
|
type GetMempoolTxsArg struct {
|
|
Items [][]byte
|
|
}
|
|
|
|
type GetMempoolTxsReply struct {
|
|
Transactions []types.Transaction
|
|
NotFoundTxs [][]byte
|
|
Error error
|
|
}
|