remove error log from handleError()

This commit is contained in:
smart_ex 2022-08-08 21:24:46 +10:00
parent d406106f49
commit 92c1595217
1 changed files with 0 additions and 1 deletions

View File

@ -160,7 +160,6 @@ export class TransactionProcessor extends BaseProcessor<Transaction> {
throw new Error(`Revert by smart contract: ${contractError}`);
}
const serviceError = Object.values(SERVICE_ERRORS).find((knownError) => message.includes(knownError));
this.redisStoreService.addErrorToSet(message);
if (serviceError) {
throw new Error(`Relayer internal error: ${serviceError}`);
}