Skip to content

Commit

Permalink
feat(SwingSet): Improve promise classification descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Nov 6, 2023
1 parent eaf806a commit c21bb40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/SwingSet/misc-tools/classify-promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,10 +429,10 @@ const main = rawArgv => {
for (const [pattern, re] of Object.entries(VAT_NAME_PATTERNS)) {
const match = vatName && vatName.match(re);
if (match) {
classify(`Zoe E(contractInstanceAdminNode).done()`, {
pattern,
...match.groups,
});
classify(
`Zoe E(${pattern} contractInstanceAdminNode).done()`,
match.groups,
);
continue nextPromise;
}
}
Expand Down

0 comments on commit c21bb40

Please sign in to comment.