aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-21 21:52:31 +0800
committerobscuren <geffobscura@gmail.com>2015-03-21 21:52:31 +0800
commit38c7c589e4a1b08baaab5b81de6aca7fa853d284 (patch)
treeb6b1a3e0f6c81b62b10b3b15b5e751ae0bd93c60 /core
parent9edb9a21bce97594928f8660e8e32df2cb25b74d (diff)
parent28e1971272d5bab6aa683d3bbe711226ca1fef98 (diff)
downloaddexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.tar
dexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.tar.gz
dexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.tar.bz2
dexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.tar.lz
dexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.tar.xz
dexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.tar.zst
dexon-38c7c589e4a1b08baaab5b81de6aca7fa853d284.zip
Merge branch 'rpcfrontier' into develop
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 0aebcbf69..99336b3b4 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