diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-02 02:08:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-02 02:08:26 +0800 |
commit | 6e50a1e9f59532671eaa2bb2f2081a67f659bd0d (patch) | |
tree | 9dcb5fa46e7500f98e54458564a0409a2b77de80 /javascript | |
parent | ac88ae86a3f6fa5d5a957bac9d96e0a2027ac068 (diff) | |
download | go-tangerine-6e50a1e9f59532671eaa2bb2f2081a67f659bd0d.tar.gz go-tangerine-6e50a1e9f59532671eaa2bb2f2081a67f659bd0d.tar.zst go-tangerine-6e50a1e9f59532671eaa2bb2f2081a67f659bd0d.zip |
Filter accepts multiple topics per entry. Fixes #403
Diffstat (limited to 'javascript')
-rw-r--r-- | javascript/types.go | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/javascript/types.go b/javascript/types.go index 17f1b739e..b4da160fc 100644 --- a/javascript/types.go +++ b/javascript/types.go @@ -6,7 +6,6 @@ import ( "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/state" - "github.com/ethereum/go-ethereum/ui" "github.com/ethereum/go-ethereum/xeth" "github.com/obscuren/otto" ) @@ -96,17 +95,3 @@ func (self *JSEthereum) toVal(v interface{}) otto.Value { return result } - -func (self *JSEthereum) Messages(object map[string]interface{}) otto.Value { - filter := ui.NewFilterFromMap(object, self.ethereum) - - logs := filter.Find() - var jslogs []JSLog - for _, m := range logs { - jslogs = append(jslogs, NewJSLog(m)) - } - - v, _ := self.vm.ToValue(jslogs) - - return v -} |