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 Jul 15, 2024
1 parent e20f0da commit 4508c86
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 @@ -433,9 +433,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 4508c86

Please sign in to comment.