bench: Remove redundant copy constructor in mempool_stress

This commit is contained in:
MarcoFalke 2019-11-01 18:20:04 -04:00
parent 29f8434368
commit fa8919889f
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -23,12 +23,6 @@ struct Available {
size_t vin_left{0}; size_t vin_left{0};
size_t tx_count; size_t tx_count;
Available(CTransactionRef& ref, size_t tx_count) : ref(ref), tx_count(tx_count){} Available(CTransactionRef& ref, size_t tx_count) : ref(ref), tx_count(tx_count){}
Available& operator=(Available other) {
ref = other.ref;
vin_left = other.vin_left;
tx_count = other.tx_count;
return *this;
}
}; };
static void ComplexMemPool(benchmark::State& state) static void ComplexMemPool(benchmark::State& state)