mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 11:51:52 +03:00
Fixed transaction expired issue
This commit is contained in:
parent
54f12c8466
commit
58af44acd1
@ -489,6 +489,10 @@ const _vote = async (currentAccount, pin, author, permlink, weight) => {
|
|||||||
resolve(result);
|
resolve(result);
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
|
if (err.jse_info && err.jse_info.code === 4030100) {
|
||||||
|
err.message =
|
||||||
|
'We noticed that your device has incorrect date or time. Please fix Date & Time or Set Automatically and try again.';
|
||||||
|
}
|
||||||
reject(err);
|
reject(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user