mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Remove the use of beast::String from rippled (RIPD-443)
This commit is contained in:
committed by
Vinnie Falco
parent
4241dbb600
commit
c0b69e8ef7
@@ -243,18 +243,16 @@ Ledger::~Ledger ()
|
||||
{
|
||||
if (mTransactionMap)
|
||||
{
|
||||
logTimedDestroy <Ledger> (
|
||||
mTransactionMap,
|
||||
"mTransactionMap with "
|
||||
+ std::to_string(mTransactionMap->size ()) + " items");
|
||||
logTimedDestroy <Ledger> (mTransactionMap,
|
||||
"mTransactionMap with " +
|
||||
std::to_string(mTransactionMap->size ()) + " items");
|
||||
}
|
||||
|
||||
if (mAccountStateMap)
|
||||
{
|
||||
logTimedDestroy <Ledger> (
|
||||
mAccountStateMap,
|
||||
"mAccountStateMap with "
|
||||
+ std::to_string (mAccountStateMap->size ()) + " items");
|
||||
logTimedDestroy <Ledger> (mAccountStateMap,
|
||||
"mAccountStateMap with " +
|
||||
std::to_string (mAccountStateMap->size ()) + " items");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user