diff --git a/src/tests/networkSetup.ts b/src/tests/networkSetup.ts index c4e95433f..604739995 100644 --- a/src/tests/networkSetup.ts +++ b/src/tests/networkSetup.ts @@ -39,6 +39,10 @@ const initBitcoinCore = async (settings: TestSettings) => { }) const wallet = await core.createWallet(''); console.log({ wallet }) - const address = await core.getNewAddress() - console.log({ address }) + const addr = await core.getNewAddress() + console.log({ addr }) + const gen = await core.generateToAddress(100, addr) + console.log({ gen }) + const info = await core.getWalletInfo(); + console.log({ info }) } \ No newline at end of file