Skip to content

Commit

Permalink
use tokenDispenserProgramId from same workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
brianUtn98 committed Apr 1, 2024
1 parent 9396a85 commit 0125746
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions backend/test/handlers/fund-transactions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ import { IDL, TokenDispenser } from '../../src/token-dispenser'
import { fundTransactions } from '../../src/handlers/fund-transactions'
import { GenericContainer, StartedTestContainer } from 'testcontainers'
import { InfluxDB } from '@influxdata/influxdb-client'
import { tokenDispenserProgramId } from '../../../token-dispenser/ts/scripts/config'
import config from '../../src/config'

const RANDOM_BLOCKHASH = 'HXq5QPm883r7834LWwDpcmEM8G8uQ9Hqm1xakCHGxprV'
const TokenDispenserPublicKey = new PublicKey(tokenDispenserProgramId)
const tokenDispenserProgramId = config.tokenDispenserProgramId()
const TokenDispenserPublicKey = new PublicKey(tokenDispenserProgramId);
const INFLUX_TOKEN =
'jsNTEHNBohEjgKqWj1fR8fJjYlBvcYaRTY68-iQ5Y55X_Qr3VKGSvqJz78g4jV8mPiUTQLPYq2tLs_Dy8M--nw=='
const FUNDER_KEY = new Keypair()
Expand Down

0 comments on commit 0125746

Please sign in to comment.