mirror of
https://github.com/tornadocash/tornado-relayer.git
synced 2025-09-21 12:44:37 -04:00
fix: timeout provider
This commit is contained in:
parent
68e44f9b38
commit
6cc62e7d94
1 changed files with 5 additions and 3 deletions
|
@ -3,9 +3,11 @@ const { redisUrl, offchainOracleAddress, oracleRpcUrl } = require('./config')
|
|||
const { getArgsForOracle, setSafeInterval } = require('./utils')
|
||||
const redis = new Redis(redisUrl)
|
||||
const Web3 = require('web3')
|
||||
const web3 = new Web3(oracleRpcUrl, {
|
||||
timeout: 200000, // ms
|
||||
})
|
||||
const web3 = new Web3(
|
||||
new Web3.providers.HttpProvider(oracleRpcUrl, {
|
||||
timeout: 200000, // ms
|
||||
}),
|
||||
)
|
||||
|
||||
const offchainOracleABI = require('../abis/OffchainOracle.abi.json')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue