jl777 8 years ago
parent
commit
39399e61a6
  1. 3
      iguana/exchanges/LP_include.h
  2. 5
      iguana/exchanges/LP_nativeDEX.c

3
iguana/exchanges/LP_include.h

@ -24,7 +24,8 @@
#ifdef FROM_JS #ifdef FROM_JS
#include <emscripten.h> #include <emscripten.h>
#define sleep(x) emscripten_sleep(x) #define sleep(x) emscripten_sleep(x)
#define usleep void emscripten_usleep(int32_t x);
#define usleep(x) emscripten_usleep(x)
#endif #endif
//#define LP_STRICTPEERS //#define LP_STRICTPEERS

5
iguana/exchanges/LP_nativeDEX.c

@ -1016,6 +1016,9 @@ void LPinit(uint16_t myport,uint16_t mypullport,uint16_t mypubport,uint16_t mybu
#ifdef FROM_JS #ifdef FROM_JS
void emscripten_usleep(int32_t x)
{
}
void LP_fromjs_iter() void LP_fromjs_iter()
{ {
@ -1035,7 +1038,7 @@ void LP_fromjs_iter()
char *bitcoind_RPC(char **retstrp,char *debugstr,char *url,char *userpass,char *command,char *params,int32_t timeout) char *bitcoind_RPC(char **retstrp,char *debugstr,char *url,char *userpass,char *command,char *params,int32_t timeout)
{ {
static uint32_t counter; char fname[512],retstr; long fsize; static uint32_t counter; char fname[512],*retstr; long fsize;
sprintf(fname,"bitcoind_RPC/req.%u",counter); sprintf(fname,"bitcoind_RPC/req.%u",counter);
counter++; counter++;
emscripten_wget(url,fname); emscripten_wget(url,fname);

Loading…
Cancel
Save