diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-08-14 07:25:33 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-08-14 07:25:33 +0800 |
commit | 28b14d3e6d43cb27019e21d0a93a80e7bee1de8c (patch) | |
tree | 9995026e87221a80cb5171364ffa734459c16b16 /rpc/comms/comms.go | |
parent | 73c4e6005c3e47342a4631955ca6fd2782925886 (diff) | |
parent | f9cbd16f27e393d4937354ee31435e0a2f689484 (diff) | |
download | dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.tar dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.tar.gz dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.tar.bz2 dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.tar.lz dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.tar.xz dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.tar.zst dexon-28b14d3e6d43cb27019e21d0a93a80e7bee1de8c.zip |
Merge pull request #1635 from bas-vk/useragent
support for user agents
Diffstat (limited to 'rpc/comms/comms.go')
-rw-r--r-- | rpc/comms/comms.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/comms/comms.go b/rpc/comms/comms.go index f5eeae84f..731b2f62e 100644 --- a/rpc/comms/comms.go +++ b/rpc/comms/comms.go @@ -49,7 +49,7 @@ var ( ) type EthereumClient interface { - // Close underlaying connection + // Close underlying connection Close() // Send request Send(interface{}) error |