aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/ext
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-08 06:50:25 +0800
committerobscuren <geffobscura@gmail.com>2014-09-08 06:50:25 +0800
commit893e9256a0f48b8fd45f29717145a4df23a3a799 (patch)
tree297d4267f08ea9552e778d5d7bda1f3d9e8f89de /ethereal/assets/ext
parent4e6defd6570dd213c53d73035e235431bb5408b5 (diff)
downloadgo-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.tar
go-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.tar.gz
go-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.tar.bz2
go-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.tar.lz
go-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.tar.xz
go-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.tar.zst
go-tangerine-893e9256a0f48b8fd45f29717145a4df23a3a799.zip
Some minor corrections
Diffstat (limited to 'ethereal/assets/ext')
-rw-r--r--ethereal/assets/ext/filter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/assets/ext/filter.js b/ethereal/assets/ext/filter.js
index 5c1c03aad..6d6ec8748 100644
--- a/ethereal/assets/ext/filter.js
+++ b/ethereal/assets/ext/filter.js
@@ -3,7 +3,7 @@ var Filter = function(options) {
this.seed = Math.floor(Math.random() * 1000000);
this.options = options;
- if(options == "chain") {
+ if(options === "chain") {
eth.registerFilterString(options, this.seed);
} else if(typeof options === "object") {
eth.registerFilter(options, this.seed);