mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-19 21:36:43 +00:00

* [NOD-1405] Add getMempoolEntries RPC command * [NOD-1405] Remove redundant fields from GetMempoolEntryResponseMessage
49 lines
1.4 KiB
Go
49 lines
1.4 KiB
Go
package appmessage
|
|
|
|
// GetMempoolEntryRequestMessage is an appmessage corresponding to
|
|
// its respective RPC message
|
|
type GetMempoolEntryRequestMessage struct {
|
|
baseMessage
|
|
TxID string
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *GetMempoolEntryRequestMessage) Command() MessageCommand {
|
|
return CmdGetMempoolEntryRequestMessage
|
|
}
|
|
|
|
// NewGetMempoolEntryRequestMessage returns a instance of the message
|
|
func NewGetMempoolEntryRequestMessage(txID string) *GetMempoolEntryRequestMessage {
|
|
return &GetMempoolEntryRequestMessage{TxID: txID}
|
|
}
|
|
|
|
// GetMempoolEntryResponseMessage is an appmessage corresponding to
|
|
// its respective RPC message
|
|
type GetMempoolEntryResponseMessage struct {
|
|
baseMessage
|
|
Entry *MempoolEntry
|
|
|
|
Error *RPCError
|
|
}
|
|
|
|
// MempoolEntry represents a transaction in the mempool.
|
|
type MempoolEntry struct {
|
|
Fee uint64
|
|
TransactionVerboseData *TransactionVerboseData
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *GetMempoolEntryResponseMessage) Command() MessageCommand {
|
|
return CmdGetMempoolEntryResponseMessage
|
|
}
|
|
|
|
// NewGetMempoolEntryResponseMessage returns a instance of the message
|
|
func NewGetMempoolEntryResponseMessage(fee uint64, transactionVerboseData *TransactionVerboseData) *GetMempoolEntryResponseMessage {
|
|
return &GetMempoolEntryResponseMessage{
|
|
Entry: &MempoolEntry{
|
|
Fee: fee,
|
|
TransactionVerboseData: transactionVerboseData,
|
|
},
|
|
}
|
|
}
|