From d5cbdf849274b0b34af0fbd98d72118df97add50 Mon Sep 17 00:00:00 2001
From: Dave Collins <davec@conformal.com>
Date: Thu, 15 Jan 2015 18:09:18 -0600
Subject: [PATCH] Fix a couple of issues found by golint.

---
 notify.go | 2 +-
 wallet.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/notify.go b/notify.go
index e391cb0c..c7154cdf 100644
--- a/notify.go
+++ b/notify.go
@@ -1078,7 +1078,7 @@ func (c *Client) RescanEndBlockAsync(startBlock *btcwire.ShaHash,
 	return c.sendCmd(cmd)
 }
 
-// RescanEndBlock rescans the block chain starting from the provided starting
+// RescanEndHeight rescans the block chain starting from the provided starting
 // block up to the provided ending block for transactions that pay to the
 // passed addresses and transactions which spend the passed outpoints.
 //
diff --git a/wallet.go b/wallet.go
index 5989676e..01ec19af 100644
--- a/wallet.go
+++ b/wallet.go
@@ -2010,7 +2010,7 @@ func (c *Client) ListReceivedByAddressMinConf(minConfirms int) ([]btcjson.ListRe
 	return c.ListReceivedByAddressMinConfAsync(minConfirms).Receive()
 }
 
-// ListReceivedByAccountIncludeEmptyAsync returns an instance of a type that can
+// ListReceivedByAddressIncludeEmptyAsync returns an instance of a type that can
 // be used to get the result of the RPC at some future time by invoking the
 // Receive function on the returned instance.
 //