mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 19:31:54 +03:00
Merge pull request #1119 from esteemapp/bugfix/transaction-exp
Fixed transaction expired issue
This commit is contained in:
commit
e877a280ab
@ -489,6 +489,10 @@ const _vote = async (currentAccount, pin, author, permlink, weight) => {
|
||||
resolve(result);
|
||||
})
|
||||
.catch(err => {
|
||||
if (get(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