aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 22:25:43 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 22:25:43 +0800
commit28e1971272d5bab6aa683d3bbe711226ca1fef98 (patch)
tree53dc1673f27dac058a37c738b8fe32b2ddd9a5c9 /core
parent41c493ace9182bc99226d66dc4479277fbbf749d (diff)
parent0cde7a4d46f68863535fbe470499b9d0dfd6ed7a (diff)
downloadgo-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar
go-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.gz
go-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.bz2
go-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.lz
go-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.xz
go-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.tar.zst
go-tangerine-28e1971272d5bab6aa683d3bbe711226ca1fef98.zip
Merge branch 'rpcxeth' into rpcfrontier
Conflicts: rpc/api.go
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