Skip to content

Commit de4054e

Browse files
committed
👀 quick update
1 parent e7de562 commit de4054e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

local-tests/setup/tinny-environment.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -394,18 +394,23 @@ export class TinnyEnvironment {
394394
throw new Error(`Error while creating testnet, aborting test run`);
395395
}
396396

397-
const testConfig = await this.testnet.getTestnetConfig();
398-
console.log('testConfig:', JSON.stringify(testConfig));
397+
await this.testnet.getTestnetConfig();
398+
console.log('✅ 1. Testnet config fetched');
399399
} else if (this.network === LIT_NETWORK.Custom) {
400400
const context =
401401
this.customNetworkContext || (await import('./networkContext.json'));
402402
this._contractContext = context;
403+
console.log('✅ 2. Custom network context fetched');
403404
}
404405

405406
await this.setupLitNodeClient();
407+
console.log('✅ 3. LitNodeClient setup');
406408
await this.setupSuperCapacityDelegationAuthSig();
409+
console.log('✅ 4. Super capacity delegation auth sig setup');
407410
await this.setupBareEthAuthSig();
411+
console.log('✅ 5. Bare eth auth sig setup');
408412
} catch (e) {
413+
console.log('❌ Failed to init() tinny');
409414
const err = toErrorWithMessage(e);
410415
console.log(
411416
`[𐬺🧪 Tinny Environment𐬺] Failed to init() tinny ${err.message}`

0 commit comments

Comments
 (0)