From 91b030cb762c8be7386e46c1721e2f72a6e4d4a6 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Fri, 8 Nov 2013 14:07:57 -0500 Subject: [PATCH] Fix comments. --- cmds.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmds.go b/cmds.go index 8e8eb234..86e7f8bb 100644 --- a/cmds.go +++ b/cmds.go @@ -291,8 +291,7 @@ type NotifyNewTXsCmd struct { // Enforce that NotifyNewTXsCmd satisifies the btcjson.Cmd interface. var _ btcjson.Cmd = &NotifyNewTXsCmd{} -// NewNotifyNewTXsCmd creates a new RescanCmd, parsing the optional -// arguments optArgs which may either be empty or a +// NewNotifyNewTXsCmd creates a new RescanCmd. func NewNotifyNewTXsCmd(id interface{}, addresses []string) *NotifyNewTXsCmd { return &NotifyNewTXsCmd{ id: id, @@ -383,8 +382,7 @@ type NotifySpentCmd struct { // Enforce that NotifySpentCmd satisifies the btcjson.Cmd interface. var _ btcjson.Cmd = &NotifySpentCmd{} -// NewNotifySpentCmd creates a new RescanCmd, parsing the optional -// arguments optArgs which may either be empty or a +// NewNotifySpentCmd creates a new RescanCmd. func NewNotifySpentCmd(id interface{}, op *btcwire.OutPoint) *NotifySpentCmd { return &NotifySpentCmd{ id: id,