Skip to content

Commit

Permalink
fix: unallocated unique name (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleroooo authored Oct 23, 2024
1 parent 7743172 commit bf79d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ object VaultCalculator {

// add a usdc row
return positions + VaultPosition(
marketId = "USDC-USD",
marketId = "UNALLOCATEDUSDC-USD",
marginUsdc = usdcTotal,
equityUsdc = usdcTotal,
currentLeverageMultiple = 1.0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ class VaultTests {
iListOf(
expectedVaultPosition,
VaultPosition(
marketId = "USDC-USD",
marketId = "UNALLOCATEDUSDC-USD",
marginUsdc = 6000.0,
equityUsdc = 6000.0,
currentLeverageMultiple = 1.0,
Expand Down

0 comments on commit bf79d15

Please sign in to comment.