From c6e1d711da0db56803309479a5deabb02b816e88 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 9 Nov 2016 11:13:10 -0800 Subject: [PATCH] review: fix typos --- chain.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chain.go b/chain.go index b3753b4e..8cb54fb4 100644 --- a/chain.go +++ b/chain.go @@ -250,7 +250,7 @@ func (c *Client) GetDifficulty() (float64, error) { return c.GetDifficultyAsync().Receive() } -// FutureGetBlockChainInfoResult is a promised to deliver the result of a +// FutureGetBlockChainInfoResult is a promise to deliver the result of a // GetBlockChainInfoAsync RPC invocation (or an applicable error). type FutureGetBlockChainInfoResult chan *response @@ -279,9 +279,9 @@ func (c *Client) GetBlockChainInfoAsync() FutureGetBlockChainInfoResult { return c.sendCmd(cmd) } -// GetBlockChainInfo returns information related to the processing staate of +// GetBlockChainInfo returns information related to the processing state of // various chain-specific details such as the current difficulty from the tip -// of the main-chain. +// of the main chain. func (c *Client) GetBlockChainInfo() (*btcjson.GetBlockChainInfoResult, error) { return c.GetBlockChainInfoAsync().Receive() }