This commit is contained in:
mihaisc 2022-11-16 11:49:37 +02:00
parent a0c09f44f6
commit 2b0238c188
2 changed files with 0 additions and 15 deletions

View File

@ -162,7 +162,6 @@ describe('Datatoken tests', async () => {
createdTimestamp,
tx,
block,
lastPriceToken,
lastPriceValue
}}`
}
@ -214,10 +213,6 @@ describe('Datatoken tests', async () => {
assert(tx.blockNumber >= blockNumber, 'incorrect value for: tx')
assert(dt.block >= blockNumber, 'incorrect value for: block')
assert(dt.block < blockNumber + 50, 'incorrect value for: block')
assert(
dt.lastPriceToken === '0x0000000000000000000000000000000000000000',
'incorrect value for: lastPriceToken'
)
assert(dt.lastPriceValue === '0', 'incorrect value for: lastPriceValue')
})
@ -275,7 +270,6 @@ describe('Datatoken tests', async () => {
createdTimestamp,
tx,
block,
lastPriceToken,
lastPriceValue
}}`
}
@ -326,10 +320,6 @@ describe('Datatoken tests', async () => {
assert(tx.blockNumber >= blockNumber, 'incorrect value for: tx')
assert(dt.block >= blockNumber, 'incorrect value for: block')
assert(dt.block < blockNumber + 50, 'incorrect value for: block')
assert(
dt.lastPriceToken === '0x0000000000000000000000000000000000000000',
'incorrect value for: lastPriceToken'
)
assert(dt.lastPriceValue === '0', 'incorrect value for: lastPriceValue')
})

View File

@ -202,7 +202,6 @@ describe('Dispenser tests', async () => {
createdTimestamp,
tx,
block,
lastPriceToken,
lastPriceValue
}}`
}
@ -254,10 +253,6 @@ describe('Dispenser tests', async () => {
assert(dtTx.blockNumber >= blockNumber, 'incorrect value for: tx')
assert(dt.block >= blockNumber, 'incorrect value for: block')
assert(dt.block < blockNumber + 50, 'incorrect value for: block')
assert(
dt.lastPriceToken === '0x0000000000000000000000000000000000000000',
'incorrect value for: lastPriceToken'
)
assert(dt.lastPriceValue === '0', 'incorrect value for: lastPriceValue')
})