From af28d12847c4572c7c3d9f5775db9b18bcfc3889 Mon Sep 17 00:00:00 2001 From: kiel barry Date: Thu, 31 May 2018 04:59:08 -0700 Subject: console: squash golint warnings (#16836) --- console/bridge.go | 4 ++-- console/console.go | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/console/bridge.go b/console/bridge.go index f2120351c..b0b4d3798 100644 --- a/console/bridge.go +++ b/console/bridge.go @@ -271,7 +271,7 @@ func (b *bridge) SleepBlocks(call otto.FunctionCall) (response otto.Value) { } type jsonrpcCall struct { - Id int64 + ID int64 Method string Params []interface{} } @@ -304,7 +304,7 @@ func (b *bridge) Send(call otto.FunctionCall) (response otto.Value) { resps, _ := call.Otto.Object("new Array()") for _, req := range reqs { resp, _ := call.Otto.Object(`({"jsonrpc":"2.0"})`) - resp.Set("id", req.Id) + resp.Set("id", req.ID) var result json.RawMessage err = b.client.Call(&result, req.Method, req.Params...) switch err := err.(type) { diff --git a/console/console.go b/console/console.go index b280d4e65..1bceb7bc6 100644 --- a/console/console.go +++ b/console/console.go @@ -73,6 +73,8 @@ type Console struct { printer io.Writer // Output writer to serialize any display strings to } +// New initializes a JavaScript interpreted runtime environment and sets defaults +// with the config struct. func New(config Config) (*Console, error) { // Handle unset config values gracefully if config.Prompter == nil { -- cgit