mirror of
https://github.com/tornadocash/tornado-relayer.git
synced 2024-10-01 08:25:37 -04:00
fix bug for refunds
This commit is contained in:
parent
1055dfec69
commit
ba7717bf9f
@ -61,7 +61,7 @@ async function relayController(req, resp) {
|
|||||||
|
|
||||||
await redisClient.set('foo', 'bar')
|
await redisClient.set('foo', 'bar')
|
||||||
requestJob = await withdrawQueue.add({
|
requestJob = await withdrawQueue.add({
|
||||||
contract, nullifierHash, root, proof, args, currency, amount, fee: fee.toString()
|
contract, nullifierHash, root, proof, args, currency, amount, fee: fee.toString(), refund
|
||||||
}, { removeOnComplete: true })
|
}, { removeOnComplete: true })
|
||||||
reponseCbs[requestJob.id] = resp
|
reponseCbs[requestJob.id] = resp
|
||||||
}
|
}
|
||||||
@ -70,7 +70,7 @@ withdrawQueue.process(async function(job, done){
|
|||||||
console.log(Date.now(), ' withdraw started', job.id)
|
console.log(Date.now(), ' withdraw started', job.id)
|
||||||
const gasPrices = fetcher.gasPrices
|
const gasPrices = fetcher.gasPrices
|
||||||
const { contract, nullifierHash, root, proof, args, refund, currency, amount, fee } = job.data
|
const { contract, nullifierHash, root, proof, args, refund, currency, amount, fee } = job.data
|
||||||
// cb()
|
console.log(JSON.stringify(job.data))
|
||||||
// job.data contains the custom data passed when the job was created
|
// job.data contains the custom data passed when the job was created
|
||||||
// job.id contains id of this job.
|
// job.id contains id of this job.
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user