Add missing Ganache nonce error message (#651)

This commit is contained in:
Ho Xuan Cuong 2022-04-08 16:26:55 +07:00 committed by GitHub
parent dbaf7feca7
commit 4af882b0ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -169,7 +169,8 @@ function isNonceError(e) {
message.includes('transaction nonce is too low') ||
message.includes('nonce too low') ||
message.includes('transaction with same nonce in the queue') ||
message.includes('oldnonce')
message.includes('oldnonce') ||
message.includes(`the tx doesn't have the correct nonce`)
)
}