Skip to content

Commit

Permalink
chore: revert vat label to vNN:name rather than vNN_name
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Oct 26, 2021
1 parent 564cbf7 commit 31edf64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/SwingSet/tools/slog-to-causeway.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async function* slogToCauseway(entries) {
const anchor = entry => {
const { crankNum, vatID, deliveryNum } = entry;
const { name } = vatInfo.get(vatID);
const loop = `${vatID}_${name || '???'}`;
const loop = `${vatID}:${name || '???'}`;
return freeze({
number: crankNum,
turn: { loop, number: deliveryNum },
Expand Down

0 comments on commit 31edf64

Please sign in to comment.