Skip to content

Commit 75f2aa5

Browse files
committed
Fix sign session key
1 parent 8cc0ea3 commit 75f2aa5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/artillery/src/processors/multi-endpoints.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ export async function runSignSessionKeyTest() {
351351

352352
const masterAccountPkpAuthContext = await authManager.createPkpAuthContext({
353353
authData: state.masterAccount.authData,
354-
pkpPublicKey: state.masterAccount.pkp.publicKey,
354+
pkpPublicKey: state.masterAccount.pkp.pubkey,
355355
authConfig: {
356356
resources: [
357357
['pkp-signing', '*'],
@@ -367,7 +367,10 @@ export async function runSignSessionKeyTest() {
367367
},
368368
});
369369

370-
// console.log('✅ Master Account PKP Auth Context:', masterAccountPkpAuthContext);
370+
console.log(
371+
'✅ Sign Session Key successful. Master Account PKP Auth Context:',
372+
masterAccountPkpAuthContext
373+
);
371374
} catch (error) {
372375
const endTime = Date.now();
373376
const duration = endTime - startTime;

0 commit comments

Comments
 (0)