Fixed TypeError bug

This commit is contained in:
Ayanami 2022-06-09 02:27:56 +09:00 committed by Danil Kovtonyuk
parent 32a712e1db
commit f43f8088e5

@ -299,7 +299,7 @@ class Transaction {
}
_handleRpcError(e, method) {
if (e.error.error) {
if (e.error?.error) {
// Sometimes ethers wraps known errors, unwrap it in this case
e = e.error
}