Skip to content

Commit

Permalink
fixup(liquidationVisibility): remove the unused prefix
Browse files Browse the repository at this point in the history
Refs: #35
  • Loading branch information
anilhelvaci committed Jun 17, 2024
1 parent 9f8b780 commit 6987215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/inter-protocol/src/vaultFactory/vaultDirector.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ const prepareVaultDirector = (
},

makeLiquidationWaker() {
return makeWaker('liquidationWaker', _timestamp => {
return makeWaker('liquidationWaker', timestamp => {
// XXX floating promise
allManagersDo(vm => vm.liquidateVaults(auctioneer, _timestamp));
allManagersDo(vm => vm.liquidateVaults(auctioneer, timestamp));
});
},
makeReschedulerWaker() {
Expand Down

0 comments on commit 6987215

Please sign in to comment.