Skip to content

Commit

Permalink
fix: call to set
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Aug 6, 2023
1 parent 836770a commit 486a27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zoe/src/contracts/transferable-counter.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const start = async (zcf, privateArgs, instanceBaggage) => {

incr() {
const count = instanceBaggage.get('count') + 1n;
instanceBaggage.set(count);
instanceBaggage.set('count', count);
return count;
},

Expand Down

0 comments on commit 486a27a

Please sign in to comment.