mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-01-23 10:41:01 -05:00
gas usage
This commit is contained in:
parent
4234e56904
commit
00ba6e8685
@ -180,6 +180,9 @@ contract('Mixer', accounts => {
|
|||||||
|
|
||||||
const balanceUserBefore = await web3.eth.getBalance(user)
|
const balanceUserBefore = await web3.eth.getBalance(user)
|
||||||
|
|
||||||
|
// Uncomment to measure gas usage
|
||||||
|
// let gas = await mixer.deposit.estimateGas(toBN(deposit.commitment.toString()), { value, from: user, gasPrice: '0' })
|
||||||
|
// console.log('deposit gas:', gas)
|
||||||
await mixer.deposit(toBN(deposit.commitment.toString()), { value, from: user, gasPrice: '0' })
|
await mixer.deposit(toBN(deposit.commitment.toString()), { value, from: user, gasPrice: '0' })
|
||||||
|
|
||||||
const balanceUserAfter = await web3.eth.getBalance(user)
|
const balanceUserAfter = await web3.eth.getBalance(user)
|
||||||
@ -212,6 +215,9 @@ contract('Mixer', accounts => {
|
|||||||
let isSpent = await mixer.isSpent(input.nullifierHash.toString(16).padStart(66, '0x00000'))
|
let isSpent = await mixer.isSpent(input.nullifierHash.toString(16).padStart(66, '0x00000'))
|
||||||
isSpent.should.be.equal(false)
|
isSpent.should.be.equal(false)
|
||||||
|
|
||||||
|
// Uncomment to measure gas usage
|
||||||
|
// gas = await mixer.withdraw.estimateGas(pi_a, pi_b, pi_c, publicSignals, { from: relayer, gasPrice: '0' })
|
||||||
|
// console.log('withdraw gas:', gas)
|
||||||
const { logs } = await mixer.withdraw(pi_a, pi_b, pi_c, publicSignals, { from: relayer, gasPrice: '0' })
|
const { logs } = await mixer.withdraw(pi_a, pi_b, pi_c, publicSignals, { from: relayer, gasPrice: '0' })
|
||||||
|
|
||||||
const balanceMixerAfter = await web3.eth.getBalance(mixer.address)
|
const balanceMixerAfter = await web3.eth.getBalance(mixer.address)
|
||||||
|
Loading…
Reference in New Issue
Block a user