mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 03:42:10 +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);
|
||||
})
|
||||
.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);
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user