diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-30 01:39:59 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-30 01:39:59 +0800 |
commit | 89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033 (patch) | |
tree | bc841606eb3f215e2103043542bd241b84f2faba /rpc/message.go | |
parent | 1cfea1113ac90b5214560ea6db923106f638c4b8 (diff) | |
download | go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.tar go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.tar.gz go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.tar.bz2 go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.tar.lz go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.tar.xz go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.tar.zst go-tangerine-89a48e365c6f401ed6e2b5fdbd5ab9ee9a91b033.zip |
Cleanup
Diffstat (limited to 'rpc/message.go')
-rw-r--r-- | rpc/message.go | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/rpc/message.go b/rpc/message.go index 05f66ee95..440bf4f8f 100644 --- a/rpc/message.go +++ b/rpc/message.go @@ -21,8 +21,6 @@ import ( "encoding/json" "errors" "fmt" - - "github.com/ethereum/go-ethereum/state" ) const ( @@ -216,26 +214,3 @@ func (req *RpcRequest) ToFilterChangedArgs() (int, error) { rpclogger.DebugDetailf("%T %v", id, id) return id, nil } - -type Log struct { - Address string `json:"address"` - Topics []string `json:"topics"` - Data string `json:"data"` -} - -func toLogs(logs state.Logs) (ls []Log) { - ls = make([]Log, len(logs)) - - for i, log := range logs { - var l Log - l.Topics = make([]string, len(log.Topics())) - l.Address = toHex(log.Address()) - l.Data = toHex(log.Data()) - for j, topic := range log.Topics() { - l.Topics[j] = toHex(topic) - } - ls[i] = l - } - - return -} |