Skip to content

Commit

Permalink
Remove null float parsing; bump to the true new processor submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Mar 4, 2025
1 parent 96f7bf8 commit 1a349de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/typescript/sdk/src/indexer-v2/json-bigint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const tryWithFallbackParse = (parser: (v: any) => any) => (v: any) => {
return v;
}
};
const parseFloat = (v: any) => (v === null ? null : Big(v).toString());
const parseFloat = (v: any) => Big(v).toString();
const parseBigInt = (v: any) => BigInt(v);
const parseInteger = (v: any) => Number(v);
const parseDefault = (v: any) => v;
Expand Down

0 comments on commit 1a349de

Please sign in to comment.