This commit is contained in:
poma 2020-10-02 12:51:36 +03:00
parent 3493a9801a
commit 8ed25df485
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ class Transaction {
* @private
*/
_hasError(message, errors) {
return errors.find((e) => (typeof e === 'string' ? e === message : message.match(e))) !== undefined
return errors.find(e => (typeof e === 'string' ? e === message : message.match(e))) !== undefined
}
_increaseGasPrice() {