Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2022-06-23 15:36:08 +02:00
parent c1dea82a55
commit 1177213bb3
1 changed files with 3 additions and 4 deletions

View File

@ -106,8 +106,7 @@ export class MangoAccount {
'\nserum:' +
JSON.stringify(
this.serum3.filter(
(serum3) =>
serum3.marketIndex != Serum3Orders.Serum3MarketIndexUnset,
(serum3) => serum3.marketIndex != Serum3Orders.Serum3MarketIndexUnset,
),
null,
4,
@ -128,7 +127,7 @@ export class TokenPosition {
static TokenIndexUnset: number = 65535;
static from(dto: TokenAccountDto) {
return new TokenPosition(
I80F48.from(dto.indexedValue),
I80F48.from(dto.indexedPosition),
dto.tokenIndex,
dto.inUseCount,
);
@ -182,7 +181,7 @@ export class TokenPosition {
export class TokenAccountDto {
constructor(
public indexedValue: I80F48Dto,
public indexedPosition: I80F48Dto,
public tokenIndex: number,
public inUseCount: number,
public reserved: number[],