aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 10:58:07 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 10:58:07 +0800
commit6c04c19eb4506efa5f6de47561025b3702619f79 (patch)
tree818a43ff93dc06c7a5c04355516b0d67d6ecd1c5 /core
parent12d87226a74d3c4095ea8e189c30ff31fcadf59f (diff)
downloadgo-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.tar
go-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.tar.gz
go-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.tar.bz2
go-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.tar.lz
go-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.tar.xz
go-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.tar.zst
go-tangerine-6c04c19eb4506efa5f6de47561025b3702619f79.zip
Reorg filter logic to XEth
Diffstat (limited to 'core')
-rw-r--r--core/filter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/filter.go b/core/filter.go
index 487e82902..f64ab4c07 100644
--- a/core/filter.go
+++ b/core/filter.go
@@ -46,7 +46,7 @@ func NewFilter(eth Backend) *Filter {
// SetOptions copies the filter options to the filter it self. The reason for this "silly" copy
// is simply because named arguments in this case is extremely nice and readable.
-func (self *Filter) SetOptions(options FilterOptions) {
+func (self *Filter) SetOptions(options *FilterOptions) {
self.earliest = options.Earliest
self.latest = options.Latest
self.skip = options.Skip