Browse Source

Do not start bitcoin: thread on OSX. fixes #889

0.8
Gavin Andresen 13 years ago
parent
commit
07ed49a472
  1. 5
      src/qt/qtipcserver.cpp

5
src/qt/qtipcserver.cpp

@ -44,6 +44,11 @@ void ipcThread(void* parg)
void ipcInit() void ipcInit()
{ {
#ifdef MAC_OSX
// TODO: implement bitcoin: URI handling the Mac Way
return;
#endif
message_queue* mq; message_queue* mq;
char strBuf[257]; char strBuf[257];
size_t nSize; size_t nSize;

Loading…
Cancel
Save