Set warn level to batch request catch

This commit is contained in:
Daniel Sanchez 2020-10-20 17:46:09 +02:00
parent 0eef6932b1
commit 24c917d821
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ const generateBatchRequests = <ReturnValues>({ abi, address, batch, context, met
// If batch was provided add to external batch
batch ? batch.add(request) : localBatch.add(request)
} catch (e) {
console.error('There was an error trying to batch request from web3.', e)
console.warn('There was an error trying to batch request from web3.', e)
resolve()
}
})