From 86d4428780918f83f69a03ae4d149cf0d0bf7f7f Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Mon, 27 Mar 2023 13:54:11 +0300 Subject: [PATCH] update readme --- test/integration/CodeExamples.test.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/integration/CodeExamples.test.ts b/test/integration/CodeExamples.test.ts index 8630280a..5bf607d1 100644 --- a/test/integration/CodeExamples.test.ts +++ b/test/integration/CodeExamples.test.ts @@ -211,6 +211,7 @@ describe('Marketplace flow tests', async () => { ) publisherAccount = (await provider.getSigner(0)) as Signer consumerAccount = (await provider.getSigner(1)) as Signer + stakerAccount = (await provider.getSigner(2)) as Signer const config = new ConfigHelper().getConfig( parseInt(String((await publisherAccount.provider.getNetwork()).chainId)) ) @@ -231,9 +232,9 @@ describe('Marketplace flow tests', async () => { console.log(`Aquarius URL: ${config.metadataCacheUri}`) console.log(`Provider URL: ${providerUrl}`) console.log(`Deployed contracts address: ${addresses}`) - console.log(`Publisher account address: ${publisherAccount}`) - console.log(`Consumer account address: ${consumerAccount}`) - console.log(`Staker account address: ${stakerAccount}`) + console.log(`Publisher account address: ${await publisherAccount.getAddress()}`) + console.log(`Consumer account address: ${await consumerAccount.getAddress()}`) + console.log(`Staker account address: ${await stakerAccount.getAddress()}`) }) /// /// ```