From 15f2ce4abdeac8d339d7e442e969ca3650885b19 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Mon, 13 Jan 2014 17:16:58 -0500 Subject: [PATCH] Fix a couple incorrect comments. --- cmds.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmds.go b/cmds.go index 64b0e9fb..a47666e2 100644 --- a/cmds.go +++ b/cmds.go @@ -419,7 +419,7 @@ type NotifyNewTXsCmd struct { // Enforce that NotifyNewTXsCmd satisifies the btcjson.Cmd interface. var _ btcjson.Cmd = &NotifyNewTXsCmd{} -// NewNotifyNewTXsCmd creates a new RescanCmd. +// NewNotifyNewTXsCmd creates a new NotifyNewTXsCmd. func NewNotifyNewTXsCmd(id interface{}, addresses []string) *NotifyNewTXsCmd { return &NotifyNewTXsCmd{ id: id, @@ -515,7 +515,7 @@ type NotifySpentCmd struct { // Enforce that NotifySpentCmd satisifies the btcjson.Cmd interface. var _ btcjson.Cmd = &NotifySpentCmd{} -// NewNotifySpentCmd creates a new RescanCmd. +// NewNotifySpentCmd creates a new NotifySpentCmd. func NewNotifySpentCmd(id interface{}, op *btcwire.OutPoint) *NotifySpentCmd { return &NotifySpentCmd{ id: id,