2019-02-23 17:04:20 +01:00
|
|
|
// Copyright (c) 2011-2019 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <bench/bench.h>
|
|
|
|
#include <rpc/blockchain.h>
|
|
|
|
#include <txmempool.h>
|
|
|
|
|
|
|
|
#include <univalue.h>
|
|
|
|
|
|
|
|
|
|
|
|
static void AddTx(const CTransactionRef& tx, const CAmount& fee, CTxMemPool& pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, pool.cs)
|
|
|
|
{
|
|
|
|
LockPoints lp;
|
2021-11-08 19:43:24 +01:00
|
|
|
pool.addUnchecked(CTxMemPoolEntry(tx, fee, /* time */ 0, /* height */ 1, /* spendsCoinbase */ false, /* sigOps */ 1, lp));
|
2019-02-23 17:04:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void RpcMempool(benchmark::Bench& bench)
|
|
|
|
{
|
|
|
|
CTxMemPool pool;
|
|
|
|
LOCK2(cs_main, pool.cs);
|
|
|
|
|
|
|
|
for (int i = 0; i < 1000; ++i) {
|
|
|
|
CMutableTransaction tx = CMutableTransaction();
|
|
|
|
tx.vin.resize(1);
|
|
|
|
tx.vin[0].scriptSig = CScript() << OP_1;
|
|
|
|
tx.vout.resize(1);
|
|
|
|
tx.vout[0].scriptPubKey = CScript() << OP_1 << OP_EQUAL;
|
|
|
|
tx.vout[0].nValue = i;
|
|
|
|
const CTransactionRef tx_r{MakeTransactionRef(tx)};
|
|
|
|
AddTx(tx_r, /* fee */ i, pool);
|
|
|
|
}
|
|
|
|
|
|
|
|
bench.minEpochIterations(40).run([&] {
|
2022-11-07 19:09:44 +01:00
|
|
|
(void)MempoolToJSON(pool, nullptr, /*verbose*/ true);
|
2019-02-23 17:04:20 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
BENCHMARK(RpcMempool);
|