mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-21 17:36:54 +01:00
fix
This commit is contained in:
parent
11fcf8e1e0
commit
7766c70137
@ -84,8 +84,6 @@ router.post('/response', upload.single('response'), async (req, res) => {
|
||||
token = crypto.randomBytes(32).toString('hex')
|
||||
}
|
||||
|
||||
await Contribution.create({ name, company, handle, socialType, token })
|
||||
|
||||
console.log('Contribution is correct, uploading to storage')
|
||||
if (process.env.DISABLE_S3 !== 'true') {
|
||||
await uploadToS3({ filename: req.file.filename, contributionIndex })
|
||||
@ -98,6 +96,8 @@ router.post('/response', upload.single('response'), async (req, res) => {
|
||||
`./server/snark_files/response_${contributionIndex}`
|
||||
)
|
||||
|
||||
await Contribution.create({ name, company, handle, socialType, token })
|
||||
|
||||
console.log('Contribution finished.')
|
||||
res.json({ contributionIndex, token })
|
||||
} catch (e) {
|
||||
|
Loading…
Reference in New Issue
Block a user