Skip to content

Commit

Permalink
fix: issue with table field
Browse files Browse the repository at this point in the history
  • Loading branch information
R-K-H committed Oct 1, 2024
1 parent c23c55a commit 286df72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/indexer/src/indexEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ async function insertMarketIfNotExists(db: DBConnection, market: Market) {
if (existingMarket.length === 0) {
await db.insert(schema.markets).values({
marketAcct: market.marketAcct,
baseMint: market.baseMint,
quoteMint: market.quoteMint,
baseMintAcct: market.baseMint,
quoteMintAcct: market.quoteMint,
marketType: 'amm',
createTxSig: '',
baseLotSize: 0n,
Expand Down

0 comments on commit 286df72

Please sign in to comment.