Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
boufni95 committed Apr 24, 2024
1 parent 6564fca commit 1eb4d31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/networkSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export const setupNetwork = async () => {
const core = new Core(settings)
await core.Init()
const { alice, bob, carol, dave } = await initLndInstances(settings)
const aliceAddr = await alice.NewAddress(AddressType.WITNESS_PUBKEY_HASH)
/*const aliceAddr = await alice.NewAddress(AddressType.WITNESS_PUBKEY_HASH)
const bobAddr = await bob.NewAddress(AddressType.WITNESS_PUBKEY_HASH)
const carolAddr = await carol.NewAddress(AddressType.WITNESS_PUBKEY_HASH)
const daveAddr = await dave.NewAddress(AddressType.WITNESS_PUBKEY_HASH)
await core.SendToAddress(aliceAddr.address, 10)
await core.SendToAddress(bobAddr.address, 10)
await core.SendToAddress(carolAddr.address, 10)
await core.SendToAddress(daveAddr.address, 10)
await core.Mine(6)
await core.Mine(6)*/
const alicePub = await alice.GetInfo()
console.log({ alicePub })
}
Expand Down

0 comments on commit 1eb4d31

Please sign in to comment.