mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-21 06:16:45 +00:00

* fix mempool accessing, rewrite get_mempool_entries_by_addresses * fix counter, add verbose * fmt * addresses as string * Define error in case utxoEntry is missing. * fix error variable to string * stop tests from failing (see in code comment) * access both pools in the same state via parameters * get rid of todo message * fmt - very important! * perf: scriptpublickey in mempool, no txscript. * address reveiw * fmt fix * mixed up isorphan bool, pass tests now * do map preallocation in mempoolbyaddresses * no proallocation for orphanpool sending. Co-authored-by: Ori Newman <orinewman1@gmail.com>
123 lines
4.1 KiB
Go
123 lines
4.1 KiB
Go
package rpchandlers
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/app/appmessage"
|
|
"github.com/kaspanet/kaspad/app/rpc/rpccontext"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/txscript"
|
|
|
|
"github.com/kaspanet/kaspad/infrastructure/network/netadapter/router"
|
|
"github.com/kaspanet/kaspad/util"
|
|
)
|
|
|
|
// HandleGetMempoolEntriesByAddresses handles the respectively named RPC command
|
|
func HandleGetMempoolEntriesByAddresses(context *rpccontext.Context, _ *router.Router, request appmessage.Message) (appmessage.Message, error) {
|
|
|
|
getMempoolEntriesByAddressesRequest := request.(*appmessage.GetMempoolEntriesByAddressesRequestMessage)
|
|
|
|
mempoolEntriesByAddresses := make([]*appmessage.MempoolEntryByAddress, 0)
|
|
|
|
sendingInTransactionPool, receivingInTransactionPool, sendingInOrphanPool, receivingInOrphanPool, err := context.Domain.MiningManager().GetTransactionsByAddresses(!getMempoolEntriesByAddressesRequest.FilterTransactionPool, getMempoolEntriesByAddressesRequest.IncludeOrphanPool)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, addressString := range getMempoolEntriesByAddressesRequest.Addresses {
|
|
|
|
address, err := util.DecodeAddress(addressString, context.Config.NetParams().Prefix)
|
|
if err != nil {
|
|
errorMessage := &appmessage.GetMempoolEntriesByAddressesResponseMessage{}
|
|
errorMessage.Error = appmessage.RPCErrorf("Could not decode address '%s': %s", addressString, err)
|
|
return errorMessage, nil
|
|
}
|
|
|
|
sending := make([]*appmessage.MempoolEntry, 0)
|
|
receiving := make([]*appmessage.MempoolEntry, 0)
|
|
|
|
scriptPublicKey, err := txscript.PayToAddrScript(address)
|
|
if err != nil {
|
|
errorMessage := &appmessage.GetMempoolEntriesByAddressesResponseMessage{}
|
|
errorMessage.Error = appmessage.RPCErrorf("Could not extract scriptPublicKey from address '%s': %s", addressString, err)
|
|
return errorMessage, nil
|
|
}
|
|
|
|
if !getMempoolEntriesByAddressesRequest.FilterTransactionPool {
|
|
|
|
if transaction, found := sendingInTransactionPool[scriptPublicKey.String()]; found {
|
|
rpcTransaction := appmessage.DomainTransactionToRPCTransaction(transaction)
|
|
err := context.PopulateTransactionWithVerboseData(rpcTransaction, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sending = append(sending, &appmessage.MempoolEntry{
|
|
Fee: transaction.Fee,
|
|
Transaction: rpcTransaction,
|
|
IsOrphan: false,
|
|
},
|
|
)
|
|
}
|
|
|
|
if transaction, found := receivingInTransactionPool[scriptPublicKey.String()]; found {
|
|
rpcTransaction := appmessage.DomainTransactionToRPCTransaction(transaction)
|
|
err := context.PopulateTransactionWithVerboseData(rpcTransaction, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
receiving = append(receiving, &appmessage.MempoolEntry{
|
|
Fee: transaction.Fee,
|
|
Transaction: rpcTransaction,
|
|
IsOrphan: false,
|
|
},
|
|
)
|
|
}
|
|
}
|
|
if getMempoolEntriesByAddressesRequest.IncludeOrphanPool {
|
|
|
|
if transaction, found := sendingInOrphanPool[scriptPublicKey.String()]; found {
|
|
rpcTransaction := appmessage.DomainTransactionToRPCTransaction(transaction)
|
|
err := context.PopulateTransactionWithVerboseData(rpcTransaction, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sending = append(sending, &appmessage.MempoolEntry{
|
|
Fee: transaction.Fee,
|
|
Transaction: rpcTransaction,
|
|
IsOrphan: true,
|
|
},
|
|
)
|
|
}
|
|
|
|
if transaction, found := receivingInOrphanPool[scriptPublicKey.String()]; found {
|
|
rpcTransaction := appmessage.DomainTransactionToRPCTransaction(transaction)
|
|
err := context.PopulateTransactionWithVerboseData(rpcTransaction, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
receiving = append(receiving, &appmessage.MempoolEntry{
|
|
Fee: transaction.Fee,
|
|
Transaction: rpcTransaction,
|
|
IsOrphan: true,
|
|
},
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
if len(sending) > 0 || len(receiving) > 0 {
|
|
mempoolEntriesByAddresses = append(
|
|
mempoolEntriesByAddresses,
|
|
&appmessage.MempoolEntryByAddress{
|
|
Address: address.String(),
|
|
Sending: sending,
|
|
Receiving: receiving,
|
|
},
|
|
)
|
|
}
|
|
}
|
|
|
|
return appmessage.NewGetMempoolEntriesByAddressesResponseMessage(mempoolEntriesByAddresses), nil
|
|
}
|