mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-02 14:26:06 -04:00
some fixes
This commit is contained in:
parent
55b3644fd7
commit
7a184d67d2
4 changed files with 6 additions and 7 deletions
|
@ -429,7 +429,7 @@ contract('ETHMixer', accounts => {
|
|||
const newVerifier = accounts[7]
|
||||
await mixer.updateVerifier(newVerifier).should.be.fulfilled
|
||||
|
||||
verifier = await mixer.verifier()
|
||||
const verifier = await mixer.verifier()
|
||||
verifier.should.be.equal(newVerifier)
|
||||
})
|
||||
|
||||
|
@ -454,7 +454,7 @@ contract('ETHMixer', accounts => {
|
|||
|
||||
await mixer.disableVerifierUpdate().should.be.fulfilled
|
||||
|
||||
newValue = await mixer.isVerifierUpdateAllowed()
|
||||
const newValue = await mixer.isVerifierUpdateAllowed()
|
||||
newValue.should.be.equal(false)
|
||||
})
|
||||
|
||||
|
@ -467,7 +467,7 @@ contract('ETHMixer', accounts => {
|
|||
|
||||
await mixer.disableVerifierUpdate().should.be.fulfilled
|
||||
|
||||
newValue = await mixer.isVerifierUpdateAllowed()
|
||||
const newValue = await mixer.isVerifierUpdateAllowed()
|
||||
newValue.should.be.equal(false)
|
||||
|
||||
const newVerifier = accounts[7]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue