mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-12 02:07:39 +01:00
22 lines
755 B
C++
22 lines
755 B
C++
|
// Copyright (c) 2016-present The Bitcoin Core developers
|
||
|
// Distributed under the MIT software license, see the accompanying
|
||
|
// file COPYING or https://opensource.org/license/mit/.
|
||
|
|
||
|
#include <kernel/mempool_removal_reason.h>
|
||
|
|
||
|
#include <cassert>
|
||
|
#include <string>
|
||
|
|
||
|
std::string RemovalReasonToString(const MemPoolRemovalReason& r) noexcept
|
||
|
{
|
||
|
switch (r) {
|
||
|
case MemPoolRemovalReason::EXPIRY: return "expiry";
|
||
|
case MemPoolRemovalReason::SIZELIMIT: return "sizelimit";
|
||
|
case MemPoolRemovalReason::REORG: return "reorg";
|
||
|
case MemPoolRemovalReason::BLOCK: return "block";
|
||
|
case MemPoolRemovalReason::CONFLICT: return "conflict";
|
||
|
case MemPoolRemovalReason::REPLACED: return "replaced";
|
||
|
}
|
||
|
assert(false);
|
||
|
}
|