Skip to content

Commit

Permalink
Always add exit requests
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi committed Jan 24, 2025
1 parent 8f66e2c commit 88b1ac1
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,11 @@ const modifyExitRequests = async (values: ParseExitRequestsInput): Promise<Parse
exitQueueIndex: exitQueueIndex as string,
})
}
else {
requests.push({
...exitRequest,
totalAssets: totalAssetsBN,
exitedAssets: exitedAssetsBN,
})
}
requests.push({
...exitRequest,
totalAssets: totalAssetsBN,
exitedAssets: exitedAssetsBN,
})

if (exitRequest.withdrawalTimestamp === null) {
duration = null
Expand Down

0 comments on commit 88b1ac1

Please sign in to comment.