mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-25 15:05:55 +01:00
fix compiler error in bitcoinrpc RE: boost::system
(Partial of 2232717cba)
This commit is contained in:
committed by
Luke Dashjr
parent
824e8dde8b
commit
813dc92cdc
@@ -2224,7 +2224,7 @@ void ThreadRPCServer2(void* parg)
|
||||
acceptor.bind(endpoint);
|
||||
acceptor.listen(socket_base::max_connections);
|
||||
}
|
||||
catch(system::system_error &e)
|
||||
catch(boost::system::system_error &e)
|
||||
{
|
||||
HACK_SHUTDOWN = true;
|
||||
ThreadSafeMessageBox(strprintf(_("An error occured while setting up the RPC port %i for listening: %s"), endpoint.port(), e.what()),
|
||||
|
||||
Reference in New Issue
Block a user