godprotocol 2.3.56 → 2.3.57

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "godprotocol",
3
- "version": "2.3.56",
3
+ "version": "2.3.57",
4
4
  "description": "A distributed computing environment for Web 4.0 — integrating AI, decentralisation, and virtual computation.",
5
5
  "main": "Index.js",
6
6
  "type": "module",
@@ -248,8 +248,8 @@ class Services {
248
248
  }
249
249
  };
250
250
 
251
- resolve_db = async (req) => {
252
- let db = await this.platform_db();
251
+ resolve_db = async (req, opts = {}) => {
252
+ let db = await this.platform_db(opts?.db_name);
253
253
 
254
254
  return {
255
255
  ok: true,