Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
mixmix committed Oct 22, 2024
1 parent e78b801 commit 0ae60f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions tests/account.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ test('Account - Register: Default Program', async (t) => {
// NOTE: we fund a new account "naynay" because jumpStart has problems with charlie (T_T)
await run('fund naynay', fundAccount(t, naynay))

// use of charlie seed is solely to transfer funds to the naynay (fresh seed) instance.
// these funds will be used for the jumpstart and register call
await run('jump-start network', jumpStartNetwork(naynay))

const account = new EntropyAccount(naynay, endpoint)
Expand Down
2 changes: 1 addition & 1 deletion tests/faucet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import { EntropyAccount } from '../src/account/main'
async function setupAndFundFaucet (t) {
const { run, entropy, endpoint } = await setupTest(t, { seed: eveSeed })
await run('jump-start network', jumpStartNetwork(entropy))
const transfer = new EntropyTransfer(entropy, endpoint)
const account = new EntropyAccount(entropy, endpoint)
const faucet = new EntropyFaucet(entropy, endpoint)
const transfer = new EntropyTransfer(entropy, endpoint)

// Deploy faucet program
const faucetProgram = readFileSync('tests/programs/faucet_program.wasm')
Expand Down

0 comments on commit 0ae60f2

Please sign in to comment.