Skip to content

Commit 3c3ab4f

Browse files
committed
jsonrpc2: fix missing comment out of JSONRPC field
1 parent 17b0d5c commit 3c3ab4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jsonrpc2.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ func (r *Request) Reply(ctx context.Context, result interface{}, reqErr error) e
428428
return err
429429
}
430430
resp := &WireResponse{
431-
// JSONRPC: Version,
432-
Result: raw,
433-
ID: r.ID,
431+
JSONRPC: Version,
432+
Result: raw,
433+
ID: r.ID,
434434
}
435435
if reqErr != nil {
436436
var callErr *Error

0 commit comments

Comments
 (0)