Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hieupnh committed Sep 24, 2024
1 parent bb7b326 commit b99c64e
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 51 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"dependencies": {
"@blockfrost/blockfrost-js": "^5.5.0",
"@cardano-ogmios/client": "^6.5.0",
"@cardano-ogmios/schema": "^6.7.0",
"@cardano-ogmios/schema": "^6.5.0",
"@minswap/tiny-invariant": "^1.2.0",
"big.js": "^6.2.1",
"bignumber.js": "^9.1.2",
Expand All @@ -69,7 +69,7 @@
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/json-bigint": "^1.0.4",
"@types/node": "^22.5.5",
"@types/node": "^20.9.2",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
Expand Down
92 changes: 46 additions & 46 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
slotToBeginUnixTime,
} from "lucid-cardano";

import { PostgresRepositoryReader } from "./syncer/repository/postgres-reposiotry";
import { PostgresRepositoryReader } from "./syncer/repository/postgres-repository";
import { Asset } from "./types/asset";
import {
DexV1Constant,
Expand Down
2 changes: 1 addition & 1 deletion src/syncer/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Redis } from "ioredis";

import { getSyncerConfig } from "./config";
import { newOgmiosInteractionCtx, newPrismaClient, newRedis } from "./connector";
import { PostgresRepositoryWriter } from "./repository/postgres-reposiotry";
import { PostgresRepositoryWriter } from "./repository/postgres-repository";
import { RedisRepositoryWriter } from "./repository/redis-repository";
import { Syncer } from "./syncer";

Expand Down
2 changes: 1 addition & 1 deletion src/syncer/syncer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PoolV1, PoolV2, StablePool } from "../types/pool";
import { TxIn, Value } from "../types/tx.internal";
import { getScriptHashFromAddress } from "../utils/address-utils.internal";
import { SyncerConfig } from "./config";
import { PostgresRepositoryWriter } from "./repository/postgres-reposiotry";
import { PostgresRepositoryWriter } from "./repository/postgres-repository";
import { RedisRepositoryWriter } from "./repository/redis-repository";

const DEFAULT_INFLIGHT = 1000;
Expand Down

0 comments on commit b99c64e

Please sign in to comment.