aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/filter.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/ethchain/filter.go b/ethchain/filter.go
index c4c403cf7..5ed9af977 100644
--- a/ethchain/filter.go
+++ b/ethchain/filter.go
@@ -72,8 +72,6 @@ func NewFilterFromMap(object map[string]interface{}, eth EthManager) *Filter {
filter.altered = makeAltered(object["altered"])
}
- fmt.Println("ALTERED", filter.altered)
-
return filter
}
@@ -123,7 +121,7 @@ func (self *Filter) SetTo(addr [][]byte) {
}
func (self *Filter) AddTo(addr []byte) {
- self.from = append(self.to, addr)
+ self.to = append(self.to, addr)
}
func (self *Filter) SetMax(max int) {