mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Copy some boilerplate from the other stability tests. * Fix a copy+paste error in run.sh. * Copy over some stability test boilerplate go code. * Run kaspad in the background. * Catch panics and initialize the RPC client. * Mine enough blocks to fund filling up the mempool. * Extract coinbase transactions out of the generated blocks. * Tidy up a bit. * Implement submitting transactions. * Lower the amount of outputs in each transaction. * Verify that the mempool size has the expected amount of transactions. * Pregenerate enough funds before submitting the first transaction so that block creation doesn't interfere with the test. * Empty mempool out by continuously adding blocks to the DAG. * Handle orphan transactions when overfilling the mempool. * Increase mempoolSizeLimit to 1m. * Fix a comment. * Fix a comment. * Add mempool-limits to run-slow.sh. * Rename generateTransactionsWithLotsOfOutputs to generateTransactionsWithMultipleOutputs. * Rename generateCoinbaseTransaction to mineBlockAndGetCoinbaseTransaction. * Make generateFundingCoinbaseTransactions return an object instead of store a global variable. * Convert mempool-limits into a Go test. * Convert panics to t.Fatalfs. * Fix a comment. * Increase mempoolSizeLimit to 1m. * Run TestMempoolLimits only if RUN_STABILITY_TESTS is set. * Move the run of mempool-limits in run-slow.sh. * Add a comment above fundingCoinbaseTransactions. * Make a couple of stylistic changes. * Use transactionhelper.CoinbaseTransactionIndex instead of hardcoding 0. * Make uninteresting errors print %+v instead of %s. Co-authored-by: Svarog <feanorr@gmail.com>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package appmessage
|
|
|
|
// GetInfoRequestMessage is an appmessage corresponding to
|
|
// its respective RPC message
|
|
type GetInfoRequestMessage struct {
|
|
baseMessage
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *GetInfoRequestMessage) Command() MessageCommand {
|
|
return CmdGetInfoRequestMessage
|
|
}
|
|
|
|
// NewGetInfoRequestMessage returns a instance of the message
|
|
func NewGetInfoRequestMessage() *GetInfoRequestMessage {
|
|
return &GetInfoRequestMessage{}
|
|
}
|
|
|
|
// GetInfoResponseMessage is an appmessage corresponding to
|
|
// its respective RPC message
|
|
type GetInfoResponseMessage struct {
|
|
baseMessage
|
|
P2PID string
|
|
MempoolSize uint64
|
|
|
|
Error *RPCError
|
|
}
|
|
|
|
// Command returns the protocol command string for the message
|
|
func (msg *GetInfoResponseMessage) Command() MessageCommand {
|
|
return CmdGetInfoResponseMessage
|
|
}
|
|
|
|
// NewGetInfoResponseMessage returns a instance of the message
|
|
func NewGetInfoResponseMessage(p2pID string, mempoolSize uint64) *GetInfoResponseMessage {
|
|
return &GetInfoResponseMessage{
|
|
P2PID: p2pID,
|
|
MempoolSize: mempoolSize,
|
|
}
|
|
}
|