From a77df03b8e6b95c7c93984621c21a690e901f0b3 Mon Sep 17 00:00:00 2001 From: hatim boufnichel Date: Wed, 24 Apr 2024 15:54:35 +0200 Subject: [PATCH] up --- src/tests/networkSetup.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/tests/networkSetup.ts b/src/tests/networkSetup.ts index c4e95433..60473999 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