Skip to content

Commit

Permalink
fix: better debugging of three-party handoff
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Aug 12, 2020
1 parent a58bbba commit f4c6442
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/SwingSet/src/vats/comms/clist.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ export function mapOutbound(state, remoteID, s, syscall) {
}
const owner = state.objectTable.get(s);
throw new Error(
`unimplemented three-party handoff (object ${s}) from ${owner} to ${remote.id})`,
`unimplemented three-party handoff (object ${s}) from ${owner} ${
getRemote(state, owner).name
} to ${remoteID} ${remote.name})`,
);
} else {
// allocated by kernel: a local vat is exposing an object to the
Expand Down

0 comments on commit f4c6442

Please sign in to comment.