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,