querysub 0.499.0 → 0.500.0

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": "querysub",
3
- "version": "0.499.0",
3
+ "version": "0.500.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -195,7 +195,7 @@ export function exposeTicketService() {
195
195
  async function getTicketServiceNode(): Promise<string> {
196
196
  let controllerNodeId = await getControllerNodeId(TicketServiceBase, !isPublic());
197
197
  if (!controllerNodeId) {
198
- throw new Error(`Could not find node exposing controller TicketServiceBase. Is \`yarn error-watch\` running?`);
198
+ throw new Error(`Could not find node exposing controller TicketServiceBase. Is \`yarn tickets\` running?`);
199
199
  }
200
200
  return controllerNodeId;
201
201
  }