libkernel
Advanced tools
Comparing version 0.0.78 to 0.0.79
@@ -57,3 +57,3 @@ import { logErr } from "./log.js"; | ||
let nonce = nextNonce; | ||
nextNonce++; | ||
nextNonce += 1; | ||
let sendUpdate = function (data) { | ||
@@ -105,2 +105,6 @@ queryUpdate(nonce, data); | ||
} | ||
if (event.data.method === "responseNonce") { | ||
// Ignore repsonseNonce messages, we will add support for those later. | ||
return; | ||
} | ||
if (event.data.method !== "response" && event.data.method !== "responseUpdate") { | ||
@@ -107,0 +111,0 @@ // We don't log here because that would catch outbound messages |
{ | ||
"name": "libkernel", | ||
"version": "0.0.78", | ||
"version": "0.0.79", | ||
"description": "helper library to interact with skynet and the skynet kernel", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19241
451