dione/node/wire/get_mempool_tx.go
2021-07-11 03:32:58 +03:00

13 lines
216 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
}