diff options
Diffstat (limited to 'service/rpc/config.go')
-rw-r--r-- | service/rpc/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/rpc/config.go b/service/rpc/config.go index 8a29c2d8..a4cf0f91 100644 --- a/service/rpc/config.go +++ b/service/rpc/config.go @@ -45,7 +45,7 @@ func (c *Config) Valid() error { // Listener creates new rpc socket Listener. func (c *Config) Listener() (net.Listener, error) { - return util.CreateListener(c.Listen); + return util.CreateListener(c.Listen) } // Dialer creates rpc socket Dialer. |