From 50a515b300456d7775d38508e45555d04a23c97a Mon Sep 17 00:00:00 2001 From: paulo-ocean Date: Mon, 1 Jul 2024 10:47:30 +0100 Subject: [PATCH] more debug --- test/integration/helpers.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/integration/helpers.ts b/test/integration/helpers.ts index e3e097c8..ce52d602 100644 --- a/test/integration/helpers.ts +++ b/test/integration/helpers.ts @@ -182,6 +182,8 @@ export async function orderAsset( providerUrl ) + console.log('initializeData: ', initializeData) + const providerFees: ProviderFees = { providerFeeAddress: initializeData.providerFee.providerFeeAddress, providerFeeToken: initializeData.providerFee.providerFeeToken, @@ -192,6 +194,7 @@ export async function orderAsset( providerData: initializeData.providerFee.providerData, validUntil: initializeData.providerFee.validUntil } + console.log('providerFees: ', providerFees) // make the payment const tx = await datatoken.startOrder( @@ -200,7 +203,9 @@ export async function orderAsset( 0, providerFees ) + console.log('tx: ', tx) const orderTx = await tx.wait() + console.log('orderTx: ', orderTx) const orderStartedTx = getEventFromTx(orderTx, 'OrderStarted') return orderStartedTx }