diff options
Diffstat (limited to 'packages/pipeline')
-rw-r--r-- | packages/pipeline/src/parsers/bloxy/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pipeline/src/parsers/bloxy/index.ts b/packages/pipeline/src/parsers/bloxy/index.ts index af07c7507..caa55d289 100644 --- a/packages/pipeline/src/parsers/bloxy/index.ts +++ b/packages/pipeline/src/parsers/bloxy/index.ts @@ -49,5 +49,5 @@ export function _parseBloxyTrade(rawTrade: BloxyTrade): DexTrade { return dexTrade; } -// Works with any form of escaoed null character (e.g., '\0' and '\u0000'). +// Works with any form of escaped null character (e.g., '\0' and '\u0000'). const filterNullCharacters = R.replace(/\0/g, ''); |