Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
boufni95 committed Apr 25, 2024
1 parent 60bb0e2 commit e0907d2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/tests/networkSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import LND from '../services/lnd/lnd.js'
export const setupNetwork = async () => {

const settings = LoadTestSettingsFromEnv()
//const core = new BitcoinCoreWrapper(settings)
//await core.InitAddress()
//await core.Mine(1)
const core = new BitcoinCoreWrapper(settings)
await core.InitAddress()
await core.Mine(1)
await new Promise(resolve => setTimeout(resolve, 500))
const lnd = new LND(settings.lndSettings, () => { }, () => { }, () => { }, () => { })
for (let i = 0; i < 30; i++) {
try {
Expand Down

0 comments on commit e0907d2

Please sign in to comment.