whisper/shhclient: fix Version return type (#15306)

This commit is contained in:
baizhenxuan 2017-10-18 17:16:12 +08:00 committed by Felix Lange
parent 2ab7fe8982
commit eea996e4e1

View File

@ -45,8 +45,8 @@ func NewClient(c *rpc.Client) *Client {
}
// Version returns the Whisper sub-protocol version.
func (sc *Client) Version(ctx context.Context) (uint, error) {
var result uint
func (sc *Client) Version(ctx context.Context) (string, error) {
var result string
err := sc.c.CallContext(ctx, &result, "shh_version")
return result, err
}