aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/random-id.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-11-18 06:27:18 +0800
committerGitHub <noreply@github.com>2016-11-18 06:27:18 +0800
commit37d836fa72c75945d436bd94feadb65aa95d7e5f (patch)
tree975275cc991cdc4f2a0b8decd2db4f429e2f9096 /app/scripts/lib/random-id.js
parentb0ccde66f62ae69c5818ddd43e22fb517f8f13e2 (diff)
parent8eb91e89bf62fd835d5e59bd01ac54e0df7c22ed (diff)
downloadtangerine-wallet-browser-37d836fa72c75945d436bd94feadb65aa95d7e5f.tar.gz
tangerine-wallet-browser-37d836fa72c75945d436bd94feadb65aa95d7e5f.tar.zst
tangerine-wallet-browser-37d836fa72c75945d436bd94feadb65aa95d7e5f.zip
Merge pull request #819 from MetaMask/i791-FixLosingConnection
Increment tx ids to avoid collisions
Diffstat (limited to 'app/scripts/lib/random-id.js')
-rw-r--r--app/scripts/lib/random-id.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/scripts/lib/random-id.js b/app/scripts/lib/random-id.js
new file mode 100644
index 000000000..3c5ae5600
--- /dev/null
+++ b/app/scripts/lib/random-id.js
@@ -0,0 +1,9 @@
+const MAX = 1000000000
+
+let idCounter = Math.round( Math.random() * MAX )
+function createRandomId() {
+ idCounter = idCounter % MAX
+ return idCounter++
+}
+
+module.exports = createRandomId