dione/node/wire/get_mempool_tx.go
2021-06-02 22:45:55 +03:00

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
}