Skip to content
Snippets Groups Projects
Commit bfb4288e authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Fix JS error on findIndex - Android 4.4 (API 19) - fix #912

parent 55104baf
No related branches found
No related tags found
No related merge requests found
Pipeline #8746 failed
...@@ -229,7 +229,7 @@ angular.module('cesium.tx.services', ['ngApi', 'cesium.bma.services', ...@@ -229,7 +229,7 @@ angular.module('cesium.tx.services', ['ngApi', 'cesium.bma.services',
tx.history.sort(function(tx1, tx2) { tx.history.sort(function(tx1, tx2) {
return (tx2.time - tx1.time); return (tx2.time - tx1.time);
}); });
var firstValidatedTxIndex = tx.history.findIndex(function(tx){ var firstValidatedTxIndex = _.findIndex(tx.history, function(tx){
return (tx.block_number <= current.number - csSettings.data.blockValidityWindow); return (tx.block_number <= current.number - csSettings.data.blockValidityWindow);
}); });
// remove validating from history // remove validating from history
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment