@ercworldio/blockchain-shared 1.0.3-dev.4-PROJ-1296.6 → 1.0.3-dev.4-PROJ-1296.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,7 @@ class AsyncTTLCache {
53
53
  let now = new Date().getTime();
54
54
  // Return cached value
55
55
  if (existing_entry && now - existing_entry.last_update <= this.stale_time_ms) {
56
- console.log(`AsyncTTLCache: Hitting cache... Value:`, existing_entry.value);
56
+ console.log(`AsyncTTLCache: Hitting cache... KEY: ${key}, Value:`, existing_entry.value);
57
57
  return existing_entry.value;
58
58
  }
59
59
  if (!existing_entry || now - existing_entry.last_update > this.stale_time_ms) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ercworldio/blockchain-shared",
3
- "version": "1.0.3-dev.4-PROJ-1296.6",
3
+ "version": "1.0.3-dev.4-PROJ-1296.7",
4
4
  "description": "Shared library for blockchain projects",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",