Skip to content

Commit 34d0155

Browse files
committed
fix: formatting
1 parent 15908b5 commit 34d0155

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sdk/src/decode/user.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ export function decodeUser(buffer: Buffer): UserAccount {
8585
const lpShares = readUnsignedBigInt64LE(buffer, offset + 64);
8686
const openOrders = buffer.readUInt8(offset + 94);
8787
const positionFlag = buffer.readUInt8(offset + 95);
88-
const isolatedPositionScaledBalance = readUnsignedBigInt64LE(buffer, offset + 96);
88+
const isolatedPositionScaledBalance = readUnsignedBigInt64LE(
89+
buffer,
90+
offset + 96
91+
);
8992

9093
if (
9194
baseAssetAmount.eq(ZERO) &&

0 commit comments

Comments
 (0)