Extension module now compiles and some tests pass
diff --git a/src/node/ext/completion_queue_async_worker.cc b/src/node/ext/completion_queue_async_worker.cc
index bb0e391..5c0e27e 100644
--- a/src/node/ext/completion_queue_async_worker.cc
+++ b/src/node/ext/completion_queue_async_worker.cc
@@ -37,7 +37,7 @@
 #include "grpc/grpc.h"
 #include "grpc/support/time.h"
 #include "completion_queue_async_worker.h"
-#include "tag.h"
+#include "call.h"
 
 namespace grpc {
 namespace node {
@@ -78,7 +78,7 @@
 void CompletionQueueAsyncWorker::HandleOKCallback() {
   NanScope();
   NanCallback callback = GetTagCallback(result->tag);
-  Handle<Value> argv[] = {NanNull(), GetNodeValue(result->tag)};
+  Handle<Value> argv[] = {NanNull(), GetTagNodeValue(result->tag)};
 
   DestroyTag(result->tag);
   grpc_event_finish(result);