mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
Fix: compilatin error issue #2
https://github.com/moneroexamples/onion-monero-viewer/issues/2
This commit is contained in:
parent
ede2ad9556
commit
d44e0ad385
1 changed files with 2 additions and 3 deletions
|
@ -3138,11 +3138,10 @@ public:
|
||||||
cerr << "Error opening/accessing custom lmdb database: "
|
cerr << "Error opening/accessing custom lmdb database: "
|
||||||
<< e.what() << endl;
|
<< e.what() << endl;
|
||||||
}
|
}
|
||||||
catch (...)
|
catch (std::exception& e)
|
||||||
{
|
{
|
||||||
std::exception_ptr p = std::current_exception();
|
|
||||||
cerr << "Error opening/accessing custom lmdb database: "
|
cerr << "Error opening/accessing custom lmdb database: "
|
||||||
<< p.__cxa_exception_type()->name() << endl;
|
<< e.what() << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue