diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-25 00:27:14 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-25 00:27:14 +0800 |
commit | 0adff214c38a501efc99d68e7365b475020c0516 (patch) | |
tree | 4132694c0f4bb87b2506856562e0e8292d9a6018 | |
parent | 7c510109cdcd6251724df6c7705b27043c3168f8 (diff) | |
parent | 3fcdafebc262f42bfa80fcffdeb322c37f6eacf3 (diff) | |
download | dexon-0adff214c38a501efc99d68e7365b475020c0516.tar.gz dexon-0adff214c38a501efc99d68e7365b475020c0516.tar.zst dexon-0adff214c38a501efc99d68e7365b475020c0516.zip |
Merge pull request #376 from frozeman/topicsFix
topics fix
-rw-r--r-- | rpc/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/util.go b/rpc/util.go index 00a418783..3e8ca3fef 100644 --- a/rpc/util.go +++ b/rpc/util.go @@ -82,7 +82,7 @@ type RpcServer interface { type Log struct { Address string `json:"address"` - Topic []string `json:"topics"` + Topic []string `json:"topic"` Data string `json:"data"` Number uint64 `json:"number"` } |