Skip to content

Commit

Permalink
fix: missing context
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed May 10, 2022
1 parent 87de363 commit b97d552
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages/ERTP/src/fake-durable-notifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ export const provideFakeNotifierKit = baggage => {
{
notifier: {
// [Symbol.asyncIterator]: () => ({}),
getUpdateSince: (_updateCount = NaN) => ({}),
getUpdateSince: (_context, _updateCount = NaN) => ({}),
},
updater: {
updateState: _state => {},
finish: _finalState => {},
fail: _reason => {},
updateState: (_context, _state) => {},
finish: (_context, _finalState) => {},
fail: (_context, _reason) => {},
},
},
);
Expand Down
2 changes: 1 addition & 1 deletion packages/ERTP/src/paymentLedger.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ export const makeDurablePaymentLedger = (
getAllegedName: () => allegedName,
getAssetKind: () => assetKind,
getDisplayInfo: () => displayInfo,
makeEmptyPurse,
makeEmptyPurse: dropContext(makeEmptyPurse),
},
mint: {
getIssuer: ({ facets: { issuer } }) => issuer,
Expand Down

0 comments on commit b97d552

Please sign in to comment.