From 1f4f3b9d6956a0437625bc3f4b6ebb9d1da75c9f Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 3 Oct 2014 11:22:46 -0700 Subject: [PATCH] fix poll mempool --- src/bitcoindjs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index 35771b30..eca8e5eb 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -1004,7 +1004,7 @@ async_poll_mempool(uv_work_t *req) { static void async_poll_mempool_after(uv_work_t *req) { NanScope(); - async_poll_blocks_data* data = static_cast(req->data); + async_poll_mempool_data* data = static_cast(req->data); if (!data->err_msg.empty()) { Local err = Exception::Error(String::New(data->err_msg.c_str()));