Fix a couple of issues found by golint.

This commit is contained in:
Dave Collins 2015-01-15 18:09:18 -06:00
parent bbec5f3a91
commit d5cbdf8492
2 changed files with 2 additions and 2 deletions

View file

@ -1078,7 +1078,7 @@ func (c *Client) RescanEndBlockAsync(startBlock *btcwire.ShaHash,
return c.sendCmd(cmd) 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 // block up to the provided ending block for transactions that pay to the
// passed addresses and transactions which spend the passed outpoints. // passed addresses and transactions which spend the passed outpoints.
// //

View file

@ -2010,7 +2010,7 @@ func (c *Client) ListReceivedByAddressMinConf(minConfirms int) ([]btcjson.ListRe
return c.ListReceivedByAddressMinConfAsync(minConfirms).Receive() 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 // be used to get the result of the RPC at some future time by invoking the
// Receive function on the returned instance. // Receive function on the returned instance.
// //