mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
Fixing failing transaction in test
This commit is contained in:
parent
d622ee95f6
commit
2e1bc8bdce
@ -32,6 +32,7 @@
|
|||||||
"test-ve": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/VeOcean.test.ts'",
|
"test-ve": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/VeOcean.test.ts'",
|
||||||
"test-df": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/DFRewards.test.ts'",
|
"test-df": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/DFRewards.test.ts'",
|
||||||
"test-dt": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/Datatoken.test.ts'",
|
"test-dt": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/Datatoken.test.ts'",
|
||||||
|
"test-delegation": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/veDelegation.test.ts'",
|
||||||
"test-zend": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/ZEnding.test.ts'",
|
"test-zend": "TS_NODE_PROJECT='test/integration/tsconfig.json' mocha --config=test/integration/.mocharc.json --node-env=test --exit 'test/integration/ZEnding.test.ts'",
|
||||||
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx .",
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx .",
|
||||||
"lint:fix": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . --fix",
|
"lint:fix": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . --fix",
|
||||||
|
@ -105,7 +105,7 @@ describe('veOcean tests', async () => {
|
|||||||
amount
|
amount
|
||||||
)
|
)
|
||||||
const timestamp = Math.floor(Date.now() / 1000)
|
const timestamp = Math.floor(Date.now() / 1000)
|
||||||
const unlockTime = timestamp + 7 * 86400
|
const unlockTime = timestamp + 7
|
||||||
|
|
||||||
if (parseInt(currentBalance) > 0 || currentLock > 0) {
|
if (parseInt(currentBalance) > 0 || currentLock > 0) {
|
||||||
// we already have some locked tokens, so our transaction should fail
|
// we already have some locked tokens, so our transaction should fail
|
||||||
@ -147,12 +147,48 @@ describe('veOcean tests', async () => {
|
|||||||
from: Alice
|
from: Alice
|
||||||
})
|
})
|
||||||
console.log('TX1: ', tx1)
|
console.log('TX1: ', tx1)
|
||||||
|
console.log('Date.now() ', Date.now())
|
||||||
|
console.log('lockTime', lockTime)
|
||||||
|
const extLockTime = Number(lockTime) + 7000000
|
||||||
|
console.log('extLockTime', extLockTime)
|
||||||
|
|
||||||
const tx = await delegateContract.methods
|
const tx2 = await veOcean.increaseUnlockTime(Alice, extLockTime)
|
||||||
.create_boost(Alice, Bob, 100, 0, lockTime, 0)
|
|
||||||
.send({
|
console.log('TX2: ', tx2)
|
||||||
from: Alice
|
|
||||||
})
|
const estGas = await calculateEstimatedGas(
|
||||||
console.log('TX: ', tx)
|
Alice,
|
||||||
|
delegateContract.methods.create_boost,
|
||||||
|
Alice,
|
||||||
|
Bob,
|
||||||
|
10000,
|
||||||
|
0,
|
||||||
|
extLockTime,
|
||||||
|
0
|
||||||
|
)
|
||||||
|
|
||||||
|
console.log('estGas', estGas)
|
||||||
|
|
||||||
|
// const tx = await delegateContract.methods
|
||||||
|
// .create_boost(Alice, Bob, 10000, 0, extLockTime, 0)
|
||||||
|
// .send({
|
||||||
|
// from: Alice
|
||||||
|
// })
|
||||||
|
// console.log('TX: ', tx)
|
||||||
|
|
||||||
|
const tx3 = await sendTx(
|
||||||
|
Alice,
|
||||||
|
estGas,
|
||||||
|
web3,
|
||||||
|
1,
|
||||||
|
delegateContract.methods.create_boost,
|
||||||
|
Alice,
|
||||||
|
Bob,
|
||||||
|
10000,
|
||||||
|
0,
|
||||||
|
extLockTime,
|
||||||
|
0
|
||||||
|
)
|
||||||
|
console.log('TX3: ', tx3)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user