diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-18 23:08:49 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-18 23:08:49 +0800 |
commit | 7c9bc8517d92cd7fc75e0ea7c3eff16546a82702 (patch) | |
tree | cd3a725544d8ba0b3741d8836b903ed6be701e87 /rpc | |
parent | e30c32339132d678b428ae531932a3f048665f59 (diff) | |
download | dexon-7c9bc8517d92cd7fc75e0ea7c3eff16546a82702.tar.gz dexon-7c9bc8517d92cd7fc75e0ea7c3eff16546a82702.tar.zst dexon-7c9bc8517d92cd7fc75e0ea7c3eff16546a82702.zip |
Remove RpcServer
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/util.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/rpc/util.go b/rpc/util.go index 3209c4540..230d0dcf1 100644 --- a/rpc/util.go +++ b/rpc/util.go @@ -94,11 +94,6 @@ func i2hex(n int) string { return common.ToHex(big.NewInt(int64(n)).Bytes()) } -type RpcServer interface { - Start() - Stop() -} - type Log struct { Address string `json:"address"` Topic []string `json:"topic"` |